This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jkloth
Recipients Arfrever, Mark.Shannon, amaury.forgeotdarc, asvetlov, benjamin.peterson, brett.cannon, dmalcolm, ilblackdragon, jcea, jkloth, larry, lemburg, mark.dickinson, python-dev, vstinner
Date 2013-06-17.19:10:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371496226.05.0.0999876723701.issue17206@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, after debugging, it is a stack overflow caused by the introduction of the different temporary variables in the Py_XINCREF, Py_XDECREF, and Py_DECREF macros.

I've attached an updated patch that reuses the _py_tmp variable for those temporary assignments thus keeping the required stack size down.
History
Date User Action Args
2013-06-17 19:10:26jklothsetrecipients: + jkloth, lemburg, brett.cannon, jcea, amaury.forgeotdarc, mark.dickinson, vstinner, larry, benjamin.peterson, Arfrever, asvetlov, dmalcolm, Mark.Shannon, python-dev, ilblackdragon
2013-06-17 19:10:26jklothsetmessageid: <1371496226.05.0.0999876723701.issue17206@psf.upfronthosting.co.za>
2013-06-17 19:10:26jklothlinkissue17206 messages
2013-06-17 19:10:25jklothcreate