From: Brett Cannon Date: Sat, 15 May 2010 22:53:24 +0000 (+0000) Subject: Make test_module_with_large_stack as an expected failure because of a change in X-Git-Tag: v3.2a1~793 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fad92a622d154b1bd7c6d0110210d0f591d8f6e;p=python 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. --- diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index bf689aea4c..5649e146ee 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'