bpo-40275: Use new test.support helper submodules in tests (GH-21451)
diff --git a/Lib/test/test_runpy.py b/Lib/test/test_runpy.py
index 84834d3..f8274a9 100644
--- a/Lib/test/test_runpy.py
+++ b/Lib/test/test_runpy.py
@@ -9,9 +9,9 @@
import py_compile
import warnings
import pathlib
-from test.support import (
- forget, make_legacy_pyc, unload, verbose, no_tracing,
- create_empty_file, temp_dir)
+from test.support import verbose, no_tracing
+from test.support.import_helper import forget, make_legacy_pyc, unload
+from test.support.os_helper import create_empty_file, temp_dir
from test.support.script_helper import make_script, make_zip_script