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.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, chandra, terry.reedy
Date 2011-11-07.12:44:45
SpamBayes Score 0.0014658676
Marked as misclassified No
Message-id <1320669886.24.0.629166743292.issue13335@psf.upfronthosting.co.za>
In-reply-to
Content
Unfortunately there is not much in the process call stack: the creation of a list (PyList_New) needs to allocate some memory (not much: sizeof(PyListObject) + gc overhead, probably 32 bytes).

If the system malloc() function fails and returns NULL, Python will raise a MemoryError.  But if malloc() blocks and freezes the process, there is not much Python can do.
History
Date User Action Args
2011-11-07 12:44:46amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, terry.reedy, chandra
2011-11-07 12:44:46amaury.forgeotdarcsetmessageid: <1320669886.24.0.629166743292.issue13335@psf.upfronthosting.co.za>
2011-11-07 12:44:45amaury.forgeotdarclinkissue13335 messages
2011-11-07 12:44:45amaury.forgeotdarccreate