diff options
author | Chris Gavin <chris@chrisgavin.me> | 2017-04-24 23:44:50 +0100 |
---|---|---|
committer | Chris Gavin <chris@chrisgavin.me> | 2017-04-24 23:44:50 +0100 |
commit | d505128a2164a9efcfdc06320d9f40d7eb8077d2 (patch) | |
tree | 5067708dcfbd50224a9098fcc1c4982344f2254a /buildlibxml.py | |
parent | 1b156311b950e2722da3159afc5c882021f9e6c1 (diff) | |
download | python-lxml-d505128a2164a9efcfdc06320d9f40d7eb8077d2.tar.gz |
Remove unused imports.
Diffstat (limited to 'buildlibxml.py')
-rw-r--r-- | buildlibxml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildlibxml.py b/buildlibxml.py index bfc8b0cf..bd2aec18 100644 --- a/buildlibxml.py +++ b/buildlibxml.py @@ -4,10 +4,10 @@ from distutils import log, version from contextlib import closing try: - from urlparse import urlsplit, urljoin, unquote + from urlparse import urljoin, unquote from urllib import urlretrieve, urlopen, urlcleanup except ImportError: - from urllib.parse import urlsplit, urljoin, unquote + from urllib.parse import urljoin, unquote from urllib.request import urlretrieve, urlopen, urlcleanup multi_make_options = [] |