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 xtreak
Recipients shuoz, xtreak
Date 2018-12-20.07:06:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1545289566.25.0.788709270274.issue35542@psf.upfronthosting.co.za>
In-reply-to
Content
Related older issue : issue1110055

https://docs.python.org/3/library/sys.html#sys.setrecursionlimit

> The highest possible limit is platform-dependent. A user may need to set the limit higher when they have a program that requires deep recursion and a platform that supports a higher limit. This should be done with care, because a too-high limit can lead to a crash.

I think this is a known case where the stack limit is hit depending on the operating system before RecursionError can be raised when a higher recursion limit is set. On my machine (Mac 10.10.4) this segfaults on 2.7 but raises RecurstionError on Python 3.7.1. Increasing the limit to 200000 causes segfault on 3.7.1.
History
Date User Action Args
2018-12-20 07:06:06xtreaksetrecipients: + xtreak, shuoz
2018-12-20 07:06:06xtreaksetmessageid: <1545289566.25.0.788709270274.issue35542@psf.upfronthosting.co.za>
2018-12-20 07:06:06xtreaklinkissue35542 messages
2018-12-20 07:06:05xtreakcreate