Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1695bcb8
Commit
1695bcb8
authored
Jul 08, 2002
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Got rid of special case for Macintosh realloc slowdown: Tim fixed the problem.
parent
77d0717f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
Lib/test/test_import.py
Lib/test/test_import.py
+1
-2
Lib/test/test_longexp.py
Lib/test/test_longexp.py
+0
-4
No files found.
Lib/test/test_import.py
View file @
1695bcb8
...
...
@@ -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'
)
Lib/test/test_longexp.py
View file @
1695bcb8
...
...
@@ -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
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment