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.
This commit is contained in:
Jack Jansen 2002-06-20 21:34:35 +00:00
parent 473f46a853
commit e36a8e8201
1 changed files with 2 additions and 1 deletions

View File

@ -107,4 +107,5 @@ def test_module_with_large_stack(module):
if os.path.exists(fname):
os.unlink(fname)
test_module_with_large_stack('longlist')
if sys.platform != 'mac':
test_module_with_large_stack('longlist')