diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 22:23:34 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 22:23:34 -0500 |
commit | ae8816bb3febff152a08b7c80d0952059cd34b54 (patch) | |
tree | b505b17cda4b122511033ef9fc2e2309555c6738 /linkify.py | |
parent | 20628e6bfa410188168a972e08671e58f01dc0d4 (diff) | |
download | external_python_setuptools-ae8816bb3febff152a08b7c80d0952059cd34b54.tar.gz external_python_setuptools-ae8816bb3febff152a08b7c80d0952059cd34b54.tar.bz2 external_python_setuptools-ae8816bb3febff152a08b7c80d0952059cd34b54.zip |
Add link support for Interopability bugs.
Diffstat (limited to 'linkify.py')
-rw-r--r-- | linkify.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -14,6 +14,7 @@ link_patterns = [ r"Old Setuptools #(?P<old_setuptools>\d+)", r"Jython #(?P<jython>\d+)", r"Python #(?P<python>\d+)", + r"Interop #(?P<interop>\d+)", ] issue_urls = dict( @@ -25,6 +26,7 @@ issue_urls = dict( old_setuptools='http://bugs.python.org/setuptools/issue{old_setuptools}', jython='http://bugs.jython.org/issue{jython}', python='http://bugs.python.org/issue{python}', + interop='https://github.com/pypa/interoperability/issues/{interop}', ) |