Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e36a8e8

Browse files
committed
Disable the test for importing very long lists for MacPython: it triggers
an out-of-memory condition (and a hang on OSX). Filed a bug report (#571845) to make sure this is eventually fixed.
1 parent 473f46a commit e36a8e8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_import.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,5 @@ def test_module_with_large_stack(module):
107107
if os.path.exists(fname):
108108
os.unlink(fname)
109109

110-
test_module_with_large_stack('longlist')
110+
if sys.platform != 'mac':
111+
test_module_with_large_stack('longlist')

0 commit comments

Comments
 (0)