From: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> Date: Sat, 18 May 2019 21:53:53 +0000 (+0300) Subject: bpo-36567: Use manpages_url to create links for man pages (GH-13339) X-Git-Tag: v3.8.0b1~309 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eab99650799699f766c2660f4cfa8ff3f9e8457f;p=thirdparty%2FPython%2Fcpython.git bpo-36567: Use manpages_url to create links for man pages (GH-13339) --- 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 @@ 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')