diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-07-08 10:07:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-07-08 10:07:25 (GMT) |
commit | 1695bcb8488a1da3af0e699b03f59421c271c313 (patch) | |
tree | af59c2c7183d89942fef7df5a50a0912453e52e5 /Lib/test/test_longexp.py | |
parent | 77d0717fb3f912ec57fd01a1c4de4232bac9bbc9 (diff) | |
download | cpython-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_longexp.py')
-rw-r--r-- | Lib/test/test_longexp.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_longexp.py b/Lib/test/test_longexp.py index b7842f9..d65e72a 100644 --- a/Lib/test/test_longexp.py +++ b/Lib/test/test_longexp.py @@ -5,10 +5,6 @@ from test_support import TestFailed, TestSkipped REPS = 65580 -if sys.platform == 'mac': - import gestalt - if gestalt.gestalt('sysv') > 0x9ff: - raise TestSkipped, 'Triggers pathological malloc slowdown on OSX MacPython' if sys.platform == "os2emx": raise TestFailed, "OS/2+EMX port has malloc problems with long expressions" else: |