From 9fad92a622d154b1bd7c6d0110210d0f591d8f6e Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 15 May 2010 22:53:24 +0000 Subject: [PATCH] Make test_module_with_large_stack as an expected failure because of a change in importlib that is causing it to fail. Work to fix it is being tracked in issue 8727. --- 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 bf689aea4ce..5649e146ee7 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -142,6 +142,7 @@ class ImportTests(unittest.TestCase): self.assertIs(orig_path, new_os.path) self.assertIsNot(orig_getenv, new_os.getenv) + @unittest.expectedFailure # Issue 8727 is tracking the fix. def test_module_with_large_stack(self, module='longlist'): # Regression test for http://bugs.python.org/issue561858. filename = module + '.py'