diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-24 22:33:16 +0200 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-24 22:33:16 +0200 |
commit | 9505e8bf8b0ca5cf33befc3f8818cb519c74cc0c (patch) | |
tree | b50eeb50ed5549ff6d8d9278e051928692533b64 /setuptools/package_index.py | |
parent | a09c0b0efd3b71306b9293837850aec1887f6b98 (diff) | |
download | external_python_setuptools-9505e8bf8b0ca5cf33befc3f8818cb519c74cc0c.tar.gz external_python_setuptools-9505e8bf8b0ca5cf33befc3f8818cb519c74cc0c.tar.bz2 external_python_setuptools-9505e8bf8b0ca5cf33befc3f8818cb519c74cc0c.zip |
Clean up imports in package_index
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-x | setuptools/package_index.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 88f04809..76421c3b 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -1,6 +1,11 @@ """PyPI and direct package downloading""" -import sys, os.path, re, shutil, socket +import sys +import os +import re +import shutil +import socket import base64 + from setuptools import ssl_support from pkg_resources import * from distutils import log |