script exits prematurely with no stderr output, but with system errors

Terry Reedy tjreedy at udel.edu
Sun Mar 20 21:28:45 EDT 2016


On 3/20/2016 4:55 PM, Larry Martell wrote:

> Yes, I was thinking that as well about the "page allocation failure"
> message, but it's almost like there were 2 errors, the first being the
> unhandled exception. But why would it not output something to stderr?

Formatting a traceback requires memory.  As I remember, Python gives up 
after out-of-memory error.  It might be that the out-of-memory caused a 
MemoryException that was not handled.

-- 
Terry Jan Reedy




More information about the Python-list mailing list