diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-20 21:34:35 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-20 21:34:35 (GMT) |
commit | e36a8e8201fdacb04d75dce83662a735afe91588 (patch) | |
tree | 88cc85c9e482284845a41f1ec44309fd5e468012 /Lib/test/test_import.py | |
parent | 473f46a8537e5ba4aa86e9026b6fff057959c587 (diff) | |
download | cpython-e36a8e8201fdacb04d75dce83662a735afe91588.zip cpython-e36a8e8201fdacb04d75dce83662a735afe91588.tar.gz cpython-e36a8e8201fdacb04d75dce83662a735afe91588.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 1ddd13e..dea0c35 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') |