diff options
| author | Hai Shi <shihai1992@gmail.com> | 2020-08-03 16:41:24 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-03 16:41:24 (GMT) |
| commit | a7f5d93bb6906d0f999248b47295d3a59b130f4d (patch) | |
| tree | a0dc5043ecc7a4250902f8d14c802382b1c94b8a /Lib/test/test_curses.py | |
| parent | 488512bf4953d856fcb049a05060a450af52fcdc (diff) | |
| download | cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.zip cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.gz cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.bz2 | |
bpo-40275: Use new test.support helper submodules in tests (GH-21449)
Diffstat (limited to 'Lib/test/test_curses.py')
| -rw-r--r-- | Lib/test/test_curses.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 5e619d1..2c6d14c 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -15,7 +15,8 @@ import sys import tempfile import unittest -from test.support import requires, import_module, verbose, SaveSignals +from test.support import requires, verbose, SaveSignals +from test.support.import_helper import import_module # Optionally test curses module. This currently requires that the # 'curses' resource be given on the regrtest command line using the -u |
