diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-03 16:49:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 16:49:18 (GMT) |
commit | 4660597b51b3d14ce6269d0ed865ab7e22c6ae1f (patch) | |
tree | 00ab23106abb1d0023e261685dc4f2077002aabd /Lib/test/test_exceptions.py | |
parent | bb0424b122e3d222a558bd4177ce37befd3e0347 (diff) | |
download | cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.zip cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.tar.gz cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21448)
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r-- | Lib/test/test_exceptions.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index a67e69b..2ffe8ca 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -8,10 +8,13 @@ import pickle import weakref import errno -from test.support import (TESTFN, captured_stderr, check_impl_detail, - check_warnings, cpython_only, gc_collect, - no_tracing, unlink, import_module, script_helper, +from test.support import (captured_stderr, check_impl_detail, + cpython_only, gc_collect, + no_tracing, script_helper, SuppressCrashReport) +from test.support.import_helper import import_module +from test.support.os_helper import TESTFN, unlink +from test.support.warnings_helper import check_warnings from test import support |