diff options
author | Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> | 2019-05-18 21:53:53 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-05-18 21:53:53 (GMT) |
commit | eab99650799699f766c2660f4cfa8ff3f9e8457f (patch) | |
tree | ecc7ef7fe9bd5f408861cb01604a18e7d816c71b /Doc | |
parent | 56027ccd6b9dab4a090e4fef8574933fb9a36ff2 (diff) | |
download | cpython-eab99650799699f766c2660f4cfa8ff3f9e8457f.zip cpython-eab99650799699f766c2660f4cfa8ff3f9e8457f.tar.gz cpython-eab99650799699f766c2660f4cfa8ff3f9e8457f.tar.bz2 |
bpo-36567: Use manpages_url to create links for man pages (GH-13339)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index afe6627..e85ea5b 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -23,6 +23,9 @@ try: except ImportError: _tkinter = None ''' + +manpages_url = 'https://manpages.debian.org/{path}' + # General substitutions. project = 'Python' copyright = '2001-%s, Python Software Foundation' % time.strftime('%Y') |