https://github.com/python/cpython/commit/e701a5cb181683db247d5c9533e911d2af72e2a8 commit: e701a5cb181683db247d5c9533e911d2af72e2a8 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ZeroIntensity <[email protected]> date: 2026-02-16T10:11:17-05:00 summary:
[3.13] gh-144601: Use `_testmultiphase` instead of `_testsinglephase` in `test_importlib` (GH-144769) (GH-144877) [3.14] gh-144601: Use `_testmultiphase` instead of `_testsinglephase` in `test_importlib` (GH-144769) (cherry picked from commit d1486623263adea6a5138453bacad36a50c14e95) Co-authored-by: Peter Bierma <[email protected]> files: M Lib/test/test_importlib/util.py diff --git a/Lib/test/test_importlib/util.py b/Lib/test/test_importlib/util.py index dc04ffb4c3b4e7..34e36677493e2a 100644 --- a/Lib/test/test_importlib/util.py +++ b/Lib/test/test_importlib/util.py @@ -16,7 +16,7 @@ import tempfile import types -_testsinglephase = import_helper.import_module("_testsinglephase") +import_helper.import_module("_testmultiphase") BUILTINS = types.SimpleNamespace() _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
