Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c00a2b7

Browse files
committedSep 12, 2024··
Separate bpo from Python issue numbers.
1 parent 8684c7a commit c00a2b7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎docs/conf.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,12 @@
2727
url='https://peps.python.org/pep-{pep_number:0>4}/',
2828
),
2929
dict(
30-
pattern=r'(python/cpython#|Python #|bpo-)(?P<python>\d+)',
31-
url='http://bugs.python.org/issue{python}',
30+
pattern=r'(python/cpython#|Python #)(?P<python>\d+)',
31+
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}',
3236
),
3337
],
3438
),

0 commit comments

Comments
 (0)
Please sign in to comment.