[Python-checkins] [3.9] Update Sphinx bpo role to use redirect URI. (#91891)

ezio-melotti webhook-mailer at python.org
Sun Apr 24 17:17:59 EDT 2022


https://github.com/python/cpython/commit/7f897b96262874c5d55bbdc60a53236b3b4021cd
commit: 7f897b96262874c5d55bbdc60a53236b3b4021cd
branch: 3.9
author: Ezio Melotti <ezio.melotti at gmail.com>
committer: ezio-melotti <ezio.melotti at gmail.com>
date: 2022-04-24T23:17:48+02:00
summary:

[3.9] Update Sphinx bpo role to use redirect URI. (#91891)

* Update Sphinx bpo role to use redirect URI. (GH-32342)

* [3.9] Update Sphinx bpo role to use redirect URI. (GH-32342).
(cherry picked from commit 08cfe079503ffd19d8b7ab324f0fdb1c6b150ca8)

Co-authored-by: Ezio Melotti <ezio.melotti at gmail.com>

files:
M Doc/tools/extensions/pyspecific.py

diff --git a/Doc/tools/extensions/pyspecific.py b/Doc/tools/extensions/pyspecific.py
index 7c448310f47f6..452366a178926 100644
--- a/Doc/tools/extensions/pyspecific.py
+++ b/Doc/tools/extensions/pyspecific.py
@@ -43,7 +43,7 @@
 import suspicious
 
 
-ISSUE_URI = 'https://bugs.python.org/issue%s'
+ISSUE_URI = 'https://bugs.python.org/issue?@action=redirect&bpo=%s'
 SOURCE_URI = 'https://github.com/python/cpython/tree/3.9/%s'
 
 # monkey-patch reST parser to disable alphabetic and roman enumerated lists



More information about the Python-checkins mailing list