aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/package_index.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-24 22:33:16 +0200
committerJason R. Coombs <jaraco@jaraco.com>2013-07-24 22:33:16 +0200
commit9505e8bf8b0ca5cf33befc3f8818cb519c74cc0c (patch)
treeb50eeb50ed5549ff6d8d9278e051928692533b64 /setuptools/package_index.py
parenta09c0b0efd3b71306b9293837850aec1887f6b98 (diff)
downloadexternal_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-xsetuptools/package_index.py7
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