[issue41318] Better error message of "Cannot recover from stack overflow."

2021-05-20 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce the error with your code on 3.11. It could be that recent changes in recursion handling fixed this case. As I mentioned on the PR, adding this to the error message can make it even more confusing because this is not the only scenario

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-28 Thread Heyi Tang
Change by Heyi Tang : -- keywords: +patch pull_requests: +20798 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21655 ___ Python tracker ___

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- versions: +Python 3.10, Python 3.5, Python 3.6, Python 3.7, Python 3.9 ___ Python tracker ___ ___

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- versions: +Python 3.8 -Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-16 Thread Heyi Tang
New submission from Heyi Tang : Is it possible to add more detailed message for the error "Cannot recover from stack overflow"? Something like "Cannot recover from stack overflow, it may be caused by catching a RecursionError but reaching the limit again before properly handling it." Maybe