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 serhiy.storchaka
Recipients miss-islington, ned.deily, paul.moore, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2018-07-04.06:47:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530686826.33.0.56676864532.issue33720@psf.upfronthosting.co.za>
In-reply-to
Content
The alternate solution is provided by PR 8071. The culprit of the main stack consumption is the code for unmarshalling float and complex in protocols 0 and 1 which uses 256-bytes buffers on the stack. Moving it to the separate function allows to decrease the stack consumption and increase the maximum marshal recursion depth on Windows.
History
Date User Action Args
2018-07-04 06:47:06serhiy.storchakasetrecipients: + serhiy.storchaka, paul.moore, vstinner, tim.golden, ned.deily, zach.ware, steve.dower, miss-islington
2018-07-04 06:47:06serhiy.storchakasetmessageid: <1530686826.33.0.56676864532.issue33720@psf.upfronthosting.co.za>
2018-07-04 06:47:06serhiy.storchakalinkissue33720 messages
2018-07-04 06:47:06serhiy.storchakacreate