diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-24 23:01:43 +0200 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-24 23:01:43 +0200 |
commit | d2f68c57b5fbca47a9389c6cf3399f956a6c2aa6 (patch) | |
tree | 61fcc963243e6e1d8c791236ea5cccb10c7ffe92 /setuptools/package_index.py | |
parent | fd77197ba1cc95ddfd2744ff8e9953bbf9f11def (diff) | |
download | external_python_setuptools-d2f68c57b5fbca47a9389c6cf3399f956a6c2aa6.tar.gz external_python_setuptools-d2f68c57b5fbca47a9389c6cf3399f956a6c2aa6.tar.bz2 external_python_setuptools-d2f68c57b5fbca47a9389c6cf3399f956a6c2aa6.zip |
Import urlsplit and urlunsplit from compat module. Fixes #53.
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-x | setuptools/package_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index f2ef50d8..26b6583c 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -17,7 +17,7 @@ from distutils.errors import DistutilsError from setuptools.compat import (urllib2, httplib, StringIO, HTTPError, urlparse, urlunparse, unquote, splituser, url2pathname, name2codepoint, - unichr, urljoin) + unichr, urljoin, urlsplit, urlunsplit) from setuptools.compat import filterfalse from fnmatch import translate from setuptools.py24compat import hashlib |