aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2012-07-21 17:04:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2012-07-21 17:04:33 -0400
commitcbb03edb6cf43016eed584f42506458893e4be05 (patch)
tree90283c39e5408f15921b4a23a76b2812b2e14906 /setuptools/command/easy_install.py
parent7e5b8c11932a172701fb15a523fa52851f3dabc5 (diff)
downloadexternal_python_setuptools-cbb03edb6cf43016eed584f42506458893e4be05.tar.gz
external_python_setuptools-cbb03edb6cf43016eed584f42506458893e4be05.tar.bz2
external_python_setuptools-cbb03edb6cf43016eed584f42506458893e4be05.zip
Reorganized imports
--HG-- branch : distribute extra : rebase_source : 6836f95f7e0668d6bd3e34f915d16de21d4f3731
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 49a2c41e..f2260236 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -10,7 +10,15 @@ file, or visit the `EasyInstall home page`__.
__ http://packages.python.org/distribute/easy_install.html
"""
-import sys, os, os.path, zipimport, shutil, tempfile, zipfile, re, stat, random
+import sys
+import os
+import zipimport
+import shutil
+import tempfile
+import zipfile
+import re
+import stat
+import random
from glob import glob
from setuptools import Command, _dont_write_bytecode
from setuptools.sandbox import run_setup