mirror of https://github.com/python/cpython
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.
This commit is contained in:
parent
e88e6ce8b7
commit
9fad92a622
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue