From 62a65fae35b18e19814d4bbbd07f5f01c33033a5 Mon Sep 17 00:00:00 2001 From: "Jeong, YunWon" Date: Sat, 10 Jan 2026 15:51:11 +0900 Subject: [PATCH] Make ready_to_import always remove tempdir from sys.path --- Lib/test/support/import_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/support/import_helper.py b/Lib/test/support/import_helper.py index 0af63501f93bc84..4c7eac0b7eb674f 100644 --- a/Lib/test/support/import_helper.py +++ b/Lib/test/support/import_helper.py @@ -305,8 +305,8 @@ def ready_to_import(name=None, source=""): try: sys.path.insert(0, tempdir) yield name, path - sys.path.remove(tempdir) finally: + sys.path.remove(tempdir) if old_module is not None: sys.modules[name] = old_module else: