[issue3996] PyOS_CheckStack does not work

2008-11-22 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Committed r67343 (trunk) and r67344 (release26-maint) -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3996] PyOS_CheckStack does not work

2008-11-22 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: The patch is fine, please apply it to all versions from 2.6 to 3.0. -- assignee: loewis -> amaury.forgeotdarc nosy: +krisvale resolution: -> accepted ___ Python tracker <[EMAIL PROTECTED]>

[issue3996] PyOS_CheckStack does not work

2008-10-30 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: See also issue #3999: I wrote a new generic handler for stack overflow "exception". ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3996] PyOS_CheckStack does not work

2008-09-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Yes, issue1069092 is another case where PyOS_CheckStack is exercised. But this other issue was first reported on Unix, when PyOS_CheckStack is currently implemented only for Windows. ___ Python trac

[issue3996] PyOS_CheckStack does not work

2008-09-29 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: This issue may be related: issue1069092 -- nosy: +haypo ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3996] PyOS_CheckStack does not work

2008-09-29 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc <[EMAIL PROTECTED]>: On Windows, PyOS_CheckStack is supposed to protect the interpreter from stack overflow. But doing this, it always crashes when the stack is nearly full. The reason is a bad check of the return value of _resetstkoflw(): according to MS