[issue22734] marshal needs a lower stack depth for debug builds on Windows

2014-11-01 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue22734] marshal needs a lower stack depth for debug builds on Windows

2014-11-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset c2a3865a59f4 by Steve Dower in branch 'default': #22734 marshal needs a lower stack depth for debug builds on Windows https://hg.python.org/cpython/rev/c2a3865a59f4 -- nosy: +python-dev ___ Python tracker

[issue22734] marshal needs a lower stack depth for debug builds on Windows

2014-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: This looks harmless to me. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue22734] marshal needs a lower stack depth for debug builds on Windows

2014-10-26 Thread Steve Dower
New submission from Steve Dower: This patch decreases the stack depth limit for Windows debug builds to prevent the recursion test from failing. (Apparently VC14 uses more stack space for each frame than VC10, but the release build is unaffected.) Not sure who the correct nosy for marshal is,