]> granicus.if.org Git - python/commitdiff
Disable the test for importing very long lists for MacPython: it triggers
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 20 Jun 2002 21:34:35 +0000 (21:34 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 20 Jun 2002 21:34:35 +0000 (21:34 +0000)
an out-of-memory condition (and a hang on OSX). Filed a bug report
(#571845) to make sure this is eventually fixed.

Lib/test/test_import.py

index 1ddd13e6b2ea191c5267902cbccede6f848db71b..dea0c35a5b2784ef085e1585e2113033e25c0975 100644 (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')