Message321012
| 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. |
|