diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-05 13:07:42 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-05 13:07:42 -0500 |
commit | dd0ef1f363e42a8859889ba319b37a29c1f03855 (patch) | |
tree | 066f4c620483cb188324bf19c48abae24638c11b /linkify.py | |
parent | b38ede5b91f82c552f1d79a0346ea5f24b0b7d1a (diff) | |
download | external_python_setuptools-dd0ef1f363e42a8859889ba319b37a29c1f03855.tar.gz external_python_setuptools-dd0ef1f363e42a8859889ba319b37a29c1f03855.tar.bz2 external_python_setuptools-dd0ef1f363e42a8859889ba319b37a29c1f03855.zip |
Add support for linkifying pip issues.
Diffstat (limited to 'linkify.py')
-rw-r--r-- | linkify.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,7 @@ link_patterns = [ r"Jython #(?P<jython>\d+)", r"Python #(?P<python>\d+)", r"Interop #(?P<interop>\d+)", + r"Pip #(?P<pip>\d+)", ] issue_urls = dict( @@ -27,6 +28,7 @@ issue_urls = dict( jython='http://bugs.jython.org/issue{jython}', python='http://bugs.python.org/issue{python}', interop='https://github.com/pypa/interoperability-peps/issues/{interop}', + pip='https://github.com/pypa/pip/issues/{pip}', ) |