diff options
Diffstat (limited to 'Lib/test/test_longexp.py')
-rw-r--r-- | Lib/test/test_longexp.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Lib/test/test_longexp.py b/Lib/test/test_longexp.py index d65e72a..c2c2612 100644 --- a/Lib/test/test_longexp.py +++ b/Lib/test/test_longexp.py @@ -1,12 +1,5 @@ -# this test has a malloc problem on OS/2+EMX, so skip test in that environment - -import sys -from test_support import TestFailed, TestSkipped REPS = 65580 -if sys.platform == "os2emx": - raise TestFailed, "OS/2+EMX port has malloc problems with long expressions" -else: - l = eval("[" + "2," * REPS + "]") - print len(l) +l = eval("[" + "2," * REPS + "]") +print len(l) |