aboutsummaryrefslogtreecommitdiffstats
path: root/linkify.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-05 13:07:42 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-05 13:07:42 -0500
commitdd0ef1f363e42a8859889ba319b37a29c1f03855 (patch)
tree066f4c620483cb188324bf19c48abae24638c11b /linkify.py
parentb38ede5b91f82c552f1d79a0346ea5f24b0b7d1a (diff)
downloadexternal_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.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/linkify.py b/linkify.py
index e7b3ca7b..5c6e16b4 100644
--- a/linkify.py
+++ b/linkify.py
@@ -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}',
)