[issue1050] py3k: correction for test_marshal on Windows

2007-08-29 Thread Guido van Rossum
Guido van Rossum added the comment: Committed revision 57672. You'll have to watch the buildbots. -- nosy: +gvanrossum resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue1050] py3k: correction for test_marshal on Windows

2007-08-28 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: I forgot to say that this allows test_marshal to pass with debug builds. __ Tracker <[EMAIL PROTECTED]> __ ___ Py

[issue1050] py3k: correction for test_marshal on Windows

2007-08-28 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc: On Windows, debug builds insert stack probes, and recursive functions tend to exhaust the stack faster. This patch reduces the marshal maximum depth from 2000 to 1500 for debug builds only. Optimized builds are not affected. -- components: Window