We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8684c7a commit c00a2b7Copy full SHA for c00a2b7
docs/conf.py
@@ -27,8 +27,12 @@
27
url='https://peps.python.org/pep-{pep_number:0>4}/',
28
),
29
dict(
30
- pattern=r'(python/cpython#|Python #|bpo-)(?P<python>\d+)',
31
- url='http://bugs.python.org/issue{python}',
+ pattern=r'(python/cpython#|Python #)(?P<python>\d+)',
+ url='https://github.com/python/cpython/issues/{python}',
32
+ ),
33
+ dict(
34
+ pattern=r'bpo-(?P<bpo>\d+)',
35
+ url='http://bugs.python.org/issue{bpo}',
36
37
],
38
0 commit comments