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 vstinner
Recipients vstinner
Date 2019-08-14.13:44:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565790240.15.0.788753710363.issue37851@roundup.psfhosted.org>
In-reply-to
Content
Currently at startup, Python always call _PyFaulthandler_Init() which allocates a stack of SIGSTKSZ bytes, even if faulthandler is never used. That's a waste of memory: the stack should be allocated the first time faulthandler is used.

bpo-21131 requires to enlarge this stack size.
History
Date User Action Args
2019-08-14 13:44:00vstinnersetrecipients: + vstinner
2019-08-14 13:44:00vstinnersetmessageid: <1565790240.15.0.788753710363.issue37851@roundup.psfhosted.org>
2019-08-14 13:44:00vstinnerlinkissue37851 messages
2019-08-14 13:44:00vstinnercreate