summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_build_ext.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-02-15 22:54:03 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-02-15 22:54:03 +0100
commit657501ddc8410495c9f44b7280f4a7abf3241753 (patch)
tree301631825a271125efa3022877722aae81f70f72 /setuptools/tests/test_build_ext.py
parent962664bbb8564ccd3cff8072f20d56a9bdcf3043 (diff)
downloadpython-setuptools-git-657501ddc8410495c9f44b7280f4a7abf3241753.tar.gz
Clean some imports.
Diffstat (limited to 'setuptools/tests/test_build_ext.py')
-rw-r--r--setuptools/tests/test_build_ext.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/tests/test_build_ext.py b/setuptools/tests/test_build_ext.py
index a520ced9..a92e53ae 100644
--- a/setuptools/tests/test_build_ext.py
+++ b/setuptools/tests/test_build_ext.py
@@ -1,6 +1,6 @@
"""build_ext tests
"""
-import os, shutil, tempfile, unittest
+import unittest
from distutils.command.build_ext import build_ext as distutils_build_ext
from setuptools.command.build_ext import build_ext
from setuptools.dist import Distribution
@@ -17,4 +17,3 @@ class TestBuildExtTest(unittest.TestCase):
res = cmd.get_ext_filename('foo')
wanted = distutils_build_ext.get_ext_filename(cmd, 'foo')
assert res == wanted
-