From 7dbb906e6e86d6bcfa6215698c76ae20d3222f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Simon?= Date: Thu, 2 Oct 2025 23:07:29 +0200 Subject: [PATCH] [TEMP] More debugging, where is my module?? --- Lib/test/test_pyrepl/test_pyrepl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_pyrepl/test_pyrepl.py b/Lib/test/test_pyrepl/test_pyrepl.py index 591945d3d04..49aacab811f 100644 --- a/Lib/test/test_pyrepl/test_pyrepl.py +++ b/Lib/test/test_pyrepl/test_pyrepl.py @@ -1140,6 +1140,8 @@ def test_already_imported_custom_module_no_other_suggestions(self): del sys.modules["mymodule"] print(f"{dir1=}, {dir2=}") # TEMPORARY -- debugging tests on windows + print(f"{[p.relative_to(dir1) for p in dir1.glob("**")]=}") # TEMPORARY -- debugging tests on windows + print(f"{[p.relative_to(dir2) for p in dir2.glob("**")]=}") # TEMPORARY -- debugging tests on windows # mymodule not imported anymore -> suggest dir2 submodules events = code_to_events("import mymodule.\t\n") reader = self.prepare_reader(events, namespace={})