diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 18:41:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 18:41:02 (GMT) |
commit | e437a10d15ddfd21d406e591acccf12ff443194e (patch) | |
tree | f6227687646fda64f9eaf485ae2d9c3f55709232 /Lib/test/test_importlib | |
parent | 597d15afe45ea3a8613d336e68a0a98b8846e603 (diff) | |
download | cpython-e437a10d15ddfd21d406e591acccf12ff443194e.zip cpython-e437a10d15ddfd21d406e591acccf12ff443194e.tar.gz cpython-e437a10d15ddfd21d406e591acccf12ff443194e.tar.bz2 |
Issue #23277: Remove unused imports in tests.
Diffstat (limited to 'Lib/test/test_importlib')
-rw-r--r-- | Lib/test/test_importlib/extension/test_path_hook.py | 1 | ||||
-rw-r--r-- | Lib/test/test_importlib/import_/test_packages.py | 1 | ||||
-rw-r--r-- | Lib/test/test_importlib/test_locks.py | 1 | ||||
-rw-r--r-- | Lib/test/test_importlib/test_namespace_pkgs.py | 3 |
4 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_importlib/extension/test_path_hook.py b/Lib/test/test_importlib/extension/test_path_hook.py index 8829de3..a4b5a64 100644 --- a/Lib/test/test_importlib/extension/test_path_hook.py +++ b/Lib/test/test_importlib/extension/test_path_hook.py @@ -2,7 +2,6 @@ from .. import util machinery = util.import_importlib('importlib.machinery') -import collections import unittest diff --git a/Lib/test/test_importlib/import_/test_packages.py b/Lib/test/test_importlib/import_/test_packages.py index 3755b84..2439604 100644 --- a/Lib/test/test_importlib/import_/test_packages.py +++ b/Lib/test/test_importlib/import_/test_packages.py @@ -1,7 +1,6 @@ from .. import util import sys import unittest -import importlib from test import support diff --git a/Lib/test/test_importlib/test_locks.py b/Lib/test/test_importlib/test_locks.py index df0af12..b2aadff 100644 --- a/Lib/test/test_importlib/test_locks.py +++ b/Lib/test/test_importlib/test_locks.py @@ -3,7 +3,6 @@ from . import util as test_util init = test_util.import_importlib('importlib') import sys -import time import unittest import weakref diff --git a/Lib/test/test_importlib/test_namespace_pkgs.py b/Lib/test/test_importlib/test_namespace_pkgs.py index cb49f19..116eb75 100644 --- a/Lib/test/test_importlib/test_namespace_pkgs.py +++ b/Lib/test/test_importlib/test_namespace_pkgs.py @@ -1,9 +1,6 @@ import contextlib -import importlib.abc -import importlib.machinery import os import sys -import types import unittest from test.test_importlib import util |