mirror of
https://github.com/python/cpython.git
synced 2025-11-29 14:31:30 +00:00
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
1 changed files with 1 additions and 0 deletions
|
|
@ -142,6 +142,7 @@ class ImportTests(unittest.TestCase):
|
||||||
self.assertIs(orig_path, new_os.path)
|
self.assertIs(orig_path, new_os.path)
|
||||||
self.assertIsNot(orig_getenv, new_os.getenv)
|
self.assertIsNot(orig_getenv, new_os.getenv)
|
||||||
|
|
||||||
|
@unittest.expectedFailure # Issue 8727 is tracking the fix.
|
||||||
def test_module_with_large_stack(self, module='longlist'):
|
def test_module_with_large_stack(self, module='longlist'):
|
||||||
# Regression test for http://bugs.python.org/issue561858.
|
# Regression test for http://bugs.python.org/issue561858.
|
||||||
filename = module + '.py'
|
filename = module + '.py'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue