summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_import.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-07-08 10:07:25 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-07-08 10:07:25 (GMT)
commit1695bcb8488a1da3af0e699b03f59421c271c313 (patch)
treeaf59c2c7183d89942fef7df5a50a0912453e52e5 /Lib/test/test_import.py
parent77d0717fb3f912ec57fd01a1c4de4232bac9bbc9 (diff)
downloadcpython-1695bcb8488a1da3af0e699b03f59421c271c313.zip
cpython-1695bcb8488a1da3af0e699b03f59421c271c313.tar.gz
cpython-1695bcb8488a1da3af0e699b03f59421c271c313.tar.bz2
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 dea0c35..1ddd13e 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')