diff options
author | Brett Cannon <brett@python.org> | 2013-06-15 17:11:25 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-15 17:11:25 -0400 |
commit | 9529fbfd363959ee4e33baeebcc6c3bc0252b42c (patch) | |
tree | dd983d37097a74680b5037f287dc83aa9391bd36 /Lib/test/script_helper.py | |
parent | 8a2a902f88ce2ab8d0e27a189a65e71aed6dd670 (diff) | |
download | cpython-git-9529fbfd363959ee4e33baeebcc6c3bc0252b42c.tar.gz |
Issue #17177: Stop using imp in a bunch of tests
Diffstat (limited to 'Lib/test/script_helper.py')
-rw-r--r-- | Lib/test/script_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py index b09f4bf49e..3b7df42bff 100644 --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -12,7 +12,7 @@ import contextlib import shutil import zipfile -from imp import source_from_cache +from importlib.util import source_from_cache from test.support import make_legacy_pyc, strip_python_stderr # Executing the interpreter in a subprocess |