Skip to content

Commit

Permalink
Separate bpo from Python issue numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 12, 2024
1 parent 8684c7a commit c00a2b7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@
url='https://peps.python.org/pep-{pep_number:0>4}/',
),
dict(
pattern=r'(python/cpython#|Python #|bpo-)(?P<python>\d+)',
url='http://bugs.python.org/issue{python}',
pattern=r'(python/cpython#|Python #)(?P<python>\d+)',
url='https://github.com/python/cpython/issues/{python}',
),
dict(
pattern=r'bpo-(?P<bpo>\d+)',
url='http://bugs.python.org/issue{bpo}',
),
],
),
Expand Down

0 comments on commit c00a2b7

Please sign in to comment.