summaryrefslogtreecommitdiff
path: root/Lib/test/test_import.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-07-08 10:07:25 +0000
committerJack Jansen <jack.jansen@cwi.nl>2002-07-08 10:07:25 +0000
commite1c7a74fa086070c8f069cb4d72414469efeb0e1 (patch)
tree14c3b5731cd3549bc1187a420746e05b8da4cc73 /Lib/test/test_import.py
parente36a0d709e0ad743f66881d0b29ce2451cab6a5d (diff)
downloadcpython-e1c7a74fa086070c8f069cb4d72414469efeb0e1.tar.gz
Got rid of special case for Macintosh realloc slowdown: Tim fixed the problem.
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r--Lib/test/test_import.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index dea0c35a5b..1ddd13e6b2 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -107,5 +107,4 @@ def test_module_with_large_stack(module):
if os.path.exists(fname):
os.unlink(fname)
-if sys.platform != 'mac':
- test_module_with_large_stack('longlist')
+test_module_with_large_stack('longlist')