]> granicus.if.org Git - python/commitdiff
Make test_module_with_large_stack as an expected failure because of a change in
authorBrett Cannon <bcannon@gmail.com>
Sat, 15 May 2010 22:53:24 +0000 (22:53 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 15 May 2010 22:53:24 +0000 (22:53 +0000)
importlib that is causing it to fail. Work to fix it is being tracked in issue
8727.

Lib/test/test_import.py

index bf689aea4ceac3af311b567947dbea1162de9e11..5649e146ee71edff8acefcfb8acac2d9a446fcfb 100644 (file)
@@ -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'