diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-17 19:04:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 19:04:58 (GMT) |
commit | f916b77fea9c6ce88d9be46aab2f3ff715a020f2 (patch) | |
tree | 186139444f63f2326fad54a49912c7e4e83f54a2 /Lib/test/test_inspect | |
parent | 362cd2680b45a36c3467b9721ff7fc0ceb338452 (diff) | |
download | cpython-f916b77fea9c6ce88d9be46aab2f3ff715a020f2.zip cpython-f916b77fea9c6ce88d9be46aab2f3ff715a020f2.tar.gz cpython-f916b77fea9c6ce88d9be46aab2f3ff715a020f2.tar.bz2 |
gh-120417: Remove unused imports in tests (part 3) (#120631)
Diffstat (limited to 'Lib/test/test_inspect')
-rw-r--r-- | Lib/test/test_inspect/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index ea8735d..9ebab2f 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -40,7 +40,7 @@ from test.support import MISSING_C_DOCSTRINGS, ALWAYS_EQ from test.support.import_helper import DirsOnSysPath, ready_to_import from test.support.os_helper import TESTFN, temp_cwd from test.support.script_helper import assert_python_ok, assert_python_failure, kill_python -from test.support import has_subprocess_support, SuppressCrashReport +from test.support import has_subprocess_support from test import support from test.test_inspect import inspect_fodder as mod |