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 ultrabear
Recipients ultrabear
Date 2021-06-11.09:27:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623403621.34.0.625867974474.issue44393@roundup.psfhosted.org>
In-reply-to
Content
Found on:
Python 3.9.5
GCC 11.1 on Linux (x86_64)
Reproduced on:
Python 3.9.5
Clang 9.0.8 Linux (arm)

When setting the recursion limit to a high enough amount, trying to reach that recursion limit ends in a segmentation fault (stack overflow?)

code:
```py
import sys

def recurse(n: int) -> int:
    recurse(n)

sys.setrecursionlimit(2**16-1)

recurse(1000000)
```
History
Date User Action Args
2021-06-11 09:27:01ultrabearsetrecipients: + ultrabear
2021-06-11 09:27:01ultrabearsetmessageid: <1623403621.34.0.625867974474.issue44393@roundup.psfhosted.org>
2021-06-11 09:27:01ultrabearlinkissue44393 messages
2021-06-11 09:27:01ultrabearcreate