This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: python malloc mach_vm_map failed
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.5
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Malloc errors in test_io
View: 5614
Assigned To: Nosy List: matrixise, ned.deily
Priority: normal Keywords:

Created on 2014-04-16 18:16 by matrixise, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg216539 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2014-04-16 18:16
Hi all,

Sometimes, I get this error on my laptop : OSX 10.9 with Python 3.5


[386/388] test_io
python.exe(33496,0x7fff7367d310) malloc: *** mach_vm_map(size=9223372036854779904) failed (error code=3)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
python.exe(33496,0x7fff7367d310) malloc: *** mach_vm_map(size=9223372036854779904) failed (error code=3)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
python.exe(33496,0x7fff7367d310) malloc: *** mach_vm_map(size=9223372036854779904) failed (error code=3)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
[387/388] test_tokenize

Stephane
msg216541 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-04-16 18:21
See Issue5614. That's normal when running the test suite on 64-bit versions on OS X.  Unfortunately, we haven't found a way to suppress the messages.
History
Date User Action Args
2022-04-11 14:58:02adminsetgithub: 65459
2014-04-16 18:21:10ned.deilysetstatus: open -> closed

superseder: Malloc errors in test_io

nosy: + ned.deily
messages: + msg216541
resolution: duplicate
stage: resolved
2014-04-16 18:16:50matrixisecreate