diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-05-15 22:53:24 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-05-15 22:53:24 (GMT) |
commit | 9fad92a622d154b1bd7c6d0110210d0f591d8f6e (patch) | |
tree | bc06f931face1700116c79a11b7153ecdb165837 | |
parent | e88e6ce8b7a1d2a65fb5762baebaba05e68ddfe4 (diff) | |
download | cpython-9fad92a622d154b1bd7c6d0110210d0f591d8f6e.zip cpython-9fad92a622d154b1bd7c6d0110210d0f591d8f6e.tar.gz cpython-9fad92a622d154b1bd7c6d0110210d0f591d8f6e.tar.bz2 |
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.
-rw-r--r-- | Lib/test/test_import.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index bf689ae..5649e14 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' |