From 5df020409187e81fe466616b4255d8ba627ba9db Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 12 Jul 2012 19:50:03 +0200 Subject: [PATCH] For diagnosis, try to list the directory first --- Lib/test/test_import.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index a38273c50a..61fea78934 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -466,6 +466,7 @@ class PathsTests(unittest.TestCase): unc += path[2:] sys.path.insert(0, unc) try: + os.listdir(unc) try: mod = __import__("test_unc_path") except ImportError as e: -- 2.50.1