diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-09-01 19:14:22 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-09-01 19:14:22 -0400 |
commit | 608988196d608f913398fc8853cfb797d2a1b63d (patch) | |
tree | 886f198e26a60137d0151f2faba2f4bb86622c87 | |
parent | edcf84faaf17e87e6e38796dd24f66d9236bf87c (diff) | |
download | python-setuptools-git-608988196d608f913398fc8853cfb797d2a1b63d.tar.gz |
Support 'bpo-' prefix on Python bugs
-rw-r--r-- | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index b92b50cc..20800e71 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,7 +101,7 @@ link_files = { url='http://bugs.jython.org/issue{jython}', ), dict( - pattern=r'Python #(?P<python>\d+)', + pattern=r'(Python #|bpo-)(?P<python>\d+)', url='http://bugs.python.org/issue{python}', ), dict( |