]> granicus.if.org Git - python/commitdiff
Got rid of special case for Macintosh realloc slowdown: Tim fixed the problem.
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 8 Jul 2002 10:07:25 +0000 (10:07 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 8 Jul 2002 10:07:25 +0000 (10:07 +0000)
Lib/test/test_import.py
Lib/test/test_longexp.py

index dea0c35a5b2784ef085e1585e2113033e25c0975..1ddd13e6b2ea191c5267902cbccede6f848db71b 100644 (file)
@@ -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')
index b7842f99b65e29e8fc07946dfb6fd5a5f8bb9332..d65e72a4ddbfaab351f7826d0929db3cda6ce124 100644 (file)
@@ -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: