From e701a5cb181683db247d5c9533e911d2af72e2a8 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Feb 2026 16:11:17 +0100 Subject: [PATCH] [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 --- Lib/test/test_importlib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/util.py b/Lib/test/test_importlib/util.py index dc04ffb4c3b..34e36677493 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()