[issue28913] "Fatal Python error: Cannot recover from stack overflow." from RecursionError in Python 3.5

2020-11-24 Thread STINNER Victor
STINNER Victor added the comment: > This appears to happen in 3.5, and not in 3.6 so perhaps whatever fix was > applied to 3.6 can be backported to 3.5 so that it doesn't core dump? I removed the stack usage for function calls in Python 3.6. See the "Stack consumption" section of:

[issue28913] "Fatal Python error: Cannot recover from stack overflow." from RecursionError in Python 3.5

2020-11-24 Thread STINNER Victor
STINNER Victor added the comment: https://github.com/Naddiseo/python-core-dump reproducer no longer works on Python 3.10. # in Python source code directory git clone https://github.com/Naddiseo/python-core-dump make ./python -m venv ENV ENV/bin/python -m pip install -r

[issue28913] "Fatal Python error: Cannot recover from stack overflow." from RecursionError in Python 3.5

2020-11-24 Thread Irit Katriel
Irit Katriel added the comment: Hi Richard, 3.5 is no longer maintained. Does this issue exist in current (>= 3.8) versions? -- nosy: +iritkatriel status: open -> pending ___ Python tracker

[issue28913] "Fatal Python error: Cannot recover from stack overflow." from RecursionError in Python 3.5

2016-12-08 Thread STINNER Victor
Changes by STINNER Victor : -- title: "Fatal Python error: Cannot recover from stack overflow." from RecursionError -> "Fatal Python error: Cannot recover from stack overflow." from RecursionError in Python 3.5 ___ Python