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 cab08be commit 90073b1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@
url='https://peps.python.org/pep-{pep_number:0>4}/',
),
dict(
pattern=r'(python/cpython#|Python #|py-)(?P<python>\d+)',
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 90073b1

Please sign in to comment.