diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-06-25 10:38:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 10:38:51 (GMT) |
commit | f7ba40b505989495c3585ed782070bdae56330ad (patch) | |
tree | b1b913a2100ba07c817e2c5d92b1b1537ab0f300 /Lib/test/support | |
parent | 5f190d2cc60cd82a604cbffb58b6ca8f40350a7a (diff) | |
download | cpython-f7ba40b505989495c3585ed782070bdae56330ad.zip cpython-f7ba40b505989495c3585ed782070bdae56330ad.tar.gz cpython-f7ba40b505989495c3585ed782070bdae56330ad.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-20849)
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/script_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/script_helper.py b/Lib/test/support/script_helper.py index 37e576d..09bb586 100644 --- a/Lib/test/support/script_helper.py +++ b/Lib/test/support/script_helper.py @@ -11,7 +11,7 @@ import py_compile import zipfile from importlib.util import source_from_cache -from test.support import make_legacy_pyc +from test.support.import_helper import make_legacy_pyc # Cached result of the expensive test performed in the function below. |