diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 18:25:32 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 18:25:32 -0400 |
commit | d195bc900beccb22c8de243416c40564ea28402f (patch) | |
tree | 4e478d548370efb98d3b1841c4f9ca22ef3d0846 /setuptools/tests/test_msvc9compiler.py | |
parent | 2d58fe235143f63f56e1207ab51e8ea6df1bb04d (diff) | |
download | external_python_setuptools-d195bc900beccb22c8de243416c40564ea28402f.tar.gz external_python_setuptools-d195bc900beccb22c8de243416c40564ea28402f.tar.bz2 external_python_setuptools-d195bc900beccb22c8de243416c40564ea28402f.zip |
Remove unused import
Diffstat (limited to 'setuptools/tests/test_msvc9compiler.py')
-rw-r--r-- | setuptools/tests/test_msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py index 33dca836..3a2ef970 100644 --- a/setuptools/tests/test_msvc9compiler.py +++ b/setuptools/tests/test_msvc9compiler.py @@ -20,7 +20,7 @@ import distutils.msvc9compiler from distutils.errors import DistutilsPlatformError # importing only setuptools should apply the patch -import setuptools +__import__('setuptools') class MockReg: """Mock for distutils.msvc9compiler.Reg. We patch it |