summaryrefslogtreecommitdiffstats
path: root/Doc/tools
diff options
context:
space:
mode:
authorT. Wouters <thomas@python.org>2023-10-13 08:43:01 (GMT)
committerGitHub <noreply@github.com>2023-10-13 08:43:01 (GMT)
commitb7f9661bc12fdfec98684c89f03177ae5d3d74c1 (patch)
tree77d09dac28e6a18a85cf842f17c099e974fe7141 /Doc/tools
parent2a68f77026417b3dc03635fa81da2dfa506f93c0 (diff)
downloadcpython-b7f9661bc12fdfec98684c89f03177ae5d3d74c1.zip
cpython-b7f9661bc12fdfec98684c89f03177ae5d3d74c1.tar.gz
cpython-b7f9661bc12fdfec98684c89f03177ae5d3d74c1.tar.bz2
Fix the pyspecific SOURCE_URI (#110811)
Diffstat (limited to 'Doc/tools')
-rw-r--r--Doc/tools/extensions/pyspecific.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/extensions/pyspecific.py b/Doc/tools/extensions/pyspecific.py
index 3cf4d23..4ba5f5a 100644
--- a/Doc/tools/extensions/pyspecific.py
+++ b/Doc/tools/extensions/pyspecific.py
@@ -39,7 +39,7 @@ except ImportError:
ISSUE_URI = 'https://bugs.python.org/issue?@action=redirect&bpo=%s'
GH_ISSUE_URI = 'https://github.com/python/cpython/issues/%s'
-SOURCE_URI = 'https://github.com/python/cpython/tree/3.12/%s'
+SOURCE_URI = 'https://github.com/python/cpython/tree/main/%s'
# monkey-patch reST parser to disable alphabetic and roman enumerated lists
from docutils.parsers.rst.states import Body