summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_exceptions.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-07-01 18:02:39 (GMT)
committerGitHub <noreply@github.com>2019-07-01 18:02:39 (GMT)
commite34b5f4d6483187969d5149c801d056b72ef2ddb (patch)
treef2a975aa16be21fc1a213856f5243194a17a2103 /Lib/test/test_exceptions.py
parent8cbffc4d96d1da0fbc38da6f34f2da30c5ffd601 (diff)
downloadcpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.zip
cpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.tar.gz
cpython-e34b5f4d6483187969d5149c801d056b72ef2ddb.tar.bz2
Remove unused imports in tests (GH-14518) (GH-14522)
(cherry picked from commit 8f4ef3b019ce380022018587571b0f970e668de3)
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r--Lib/test/test_exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 9d10df5..0196c4d 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -9,7 +9,7 @@ import weakref
import errno
from test.support import (TESTFN, captured_stderr, check_impl_detail,
- check_warnings, cpython_only, gc_collect, run_unittest,
+ check_warnings, cpython_only, gc_collect,
no_tracing, unlink, import_module, script_helper,
SuppressCrashReport)
class NaiveException(Exception):