Antoine Pitrou added the comment:

This is a malloc() failure, not a Python bug ("DUMA Aborting: mprotect() 
failed: Cannot allocate memory").

Line 1173 in _sre.c allocates a fixed-sized structure (SRE_REPEAT):

            ctx->u.rep = (SRE_REPEAT*) PyObject_MALLOC(sizeof(*ctx->u.rep));

That structure is probably 32 bytes long in 64-bit mode.

----------
nosy: +haypo, pitrou
resolution:  -> invalid
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18897>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to