diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-30 00:21:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 00:21:30 (GMT) |
commit | b1e11c31c523dc082985e9de779ceeb47224e536 (patch) | |
tree | a4f356df1e0228266e885c6ecb5e5dce52baef80 /Lib/distutils/tests/test_config_cmd.py | |
parent | 57572b103ebd8732ac21922f0051a7f140d0e405 (diff) | |
download | cpython-b1e11c31c523dc082985e9de779ceeb47224e536.zip cpython-b1e11c31c523dc082985e9de779ceeb47224e536.tar.gz cpython-b1e11c31c523dc082985e9de779ceeb47224e536.tar.bz2 |
bpo-40443: Remove unused imports in tests (GH-19804)
Diffstat (limited to 'Lib/distutils/tests/test_config_cmd.py')
-rw-r--r-- | Lib/distutils/tests/test_config_cmd.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_config_cmd.py b/Lib/distutils/tests/test_config_cmd.py index 8bd2c94..9aeab07 100644 --- a/Lib/distutils/tests/test_config_cmd.py +++ b/Lib/distutils/tests/test_config_cmd.py @@ -39,7 +39,6 @@ class ConfigTestCase(support.LoggingSilencer, @unittest.skipIf(sys.platform == 'win32', "can't test on Windows") def test_search_cpp(self): - import shutil cmd = missing_compiler_executable(['preprocessor']) if cmd is not None: self.skipTest('The %r command is not found' % cmd) |