From: Jack Jansen Date: Thu, 20 Jun 2002 21:34:35 +0000 (+0000) Subject: Disable the test for importing very long lists for MacPython: it triggers X-Git-Tag: v2.3c1~5252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e36a8e8201fdacb04d75dce83662a735afe91588;p=python 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. --- diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 1ddd13e6b2..dea0c35a5b 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -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')