[Python-checkins] bpo-36567: Use manpages_url to create links for man pages (GH-13339)

Berker Peksag webhook-mailer at python.org
Sat May 18 17:53:57 EDT 2019


https://github.com/python/cpython/commit/eab99650799699f766c2660f4cfa8ff3f9e8457f
commit: eab99650799699f766c2660f4cfa8ff3f9e8457f
branch: master
author: Batuhan Taşkaya <47358913+isidentical at users.noreply.github.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2019-05-19T00:53:53+03:00
summary:

bpo-36567: Use manpages_url to create links for man pages (GH-13339)

files:
M Doc/conf.py

diff --git a/Doc/conf.py b/Doc/conf.py
index afe66270c10e..e85ea5b2d2ff 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -23,6 +23,9 @@
 except ImportError:
     _tkinter = None
 '''
+
+manpages_url = 'https://manpages.debian.org/{path}'
+
 # General substitutions.
 project = 'Python'
 copyright = '2001-%s, Python Software Foundation' % time.strftime('%Y')



More information about the Python-checkins mailing list