aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_develop.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-06-23 17:00:01 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-06-23 17:00:01 -0400
commitfbf309d3e3b529f6ff0d57ecbb22514755b1154d (patch)
tree5e25261f7bf32591f59796c972642a6f9a54b22f /setuptools/tests/test_develop.py
parentea05dfd88bf0c0d778cba2cd43dc4f8becbb310b (diff)
downloadexternal_python_setuptools-fbf309d3e3b529f6ff0d57ecbb22514755b1154d.tar.gz
external_python_setuptools-fbf309d3e3b529f6ff0d57ecbb22514755b1154d.tar.bz2
external_python_setuptools-fbf309d3e3b529f6ff0d57ecbb22514755b1154d.zip
Remove unused imports, unused variables, and excess whitespace
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r--setuptools/tests/test_develop.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index 18f35c0f..66d182eb 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -9,8 +9,6 @@ import unittest
from distutils.errors import DistutilsError
from setuptools.command.develop import develop
-from setuptools.command import easy_install as easy_install_pkg
-from setuptools.compat import StringIO
from setuptools.dist import Distribution
SETUP_PY = """\
@@ -114,11 +112,11 @@ class TestDevelopTest(unittest.TestCase):
os.chdir(self.dir)
try:
try:
- dist = Distribution({'setup_requires': ['I_DONT_EXIST']})
+ Distribution({'setup_requires': ['I_DONT_EXIST']})
except DistutilsError:
e = sys.exc_info()[1]
error = str(e)
- if error == wanted:
+ if error == wanted:
pass
finally:
os.chdir(old_dir)