We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6515e2f commit 7dbb906Copy full SHA for 7dbb906
Lib/test/test_pyrepl/test_pyrepl.py
@@ -1140,6 +1140,8 @@ def test_already_imported_custom_module_no_other_suggestions(self):
1140
1141
del sys.modules["mymodule"]
1142
print(f"{dir1=}, {dir2=}") # TEMPORARY -- debugging tests on windows
1143
+ print(f"{[p.relative_to(dir1) for p in dir1.glob("**")]=}") # TEMPORARY -- debugging tests on windows
1144
+ print(f"{[p.relative_to(dir2) for p in dir2.glob("**")]=}") # TEMPORARY -- debugging tests on windows
1145
# mymodule not imported anymore -> suggest dir2 submodules
1146
events = code_to_events("import mymodule.\t\n")
1147
reader = self.prepare_reader(events, namespace={})
0 commit comments