➜

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.

作者 vstinner
收信人 python-dev, vstinner
日期 2015-09-30.22:42:27
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1443652947.17.0.85524233417.issue25274@psf.upfronthosting.co.za>
In-reply-to
内容
At revision 281ab7954d7c, the test_recursionlimit_recovery() test of test_sys is executed at depth 36.

The overflowed flag is reset when the depth becomes smaller than 50 * 3 // 4 = 37, so when Py_LeaveRecursiveCall() is called with depth level 36.

The test raises a RecursionError once which sets the overflowed flag. Then it tries again to raise the RecursionError, but instead Py_FatalError() is called because the overflowed flag was not reset.
历史
日期 用户 动作 参数
2015-09-30 22:42:27vstinner修改recipients: + vstinner, python-dev
2015-09-30 22:42:27vstinner修改messageid: <1443652947.17.0.85524233417.issue25274@psf.upfronthosting.co.za>
2015-09-30 22:42:27vstinner链接issue25274 messages
2015-09-30 22:42:27vstinner创建