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 jdemeyer
Recipients eric.smith, jdemeyer, nanjekyejoannah, ncoghlan, nickdrozd
Date 2019-05-03.14:18:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1556893088.79.0.592550100191.issue34214@roundup.psfhosted.org>
In-reply-to
Content
What seems to be happening is a recursion error while handling a recursion error. Essentially

>>> def f():
...     try:
...         f()
...     except:
...         f()
... 
>>> f()
Fatal Python error: Cannot recover from stack overflow.

So unless I'm missing something here, I don't see why this should be considered a CPython bug.
History
Date User Action Args
2019-05-03 14:18:08jdemeyersetrecipients: + jdemeyer, ncoghlan, eric.smith, nickdrozd, nanjekyejoannah
2019-05-03 14:18:08jdemeyersetmessageid: <1556893088.79.0.592550100191.issue34214@roundup.psfhosted.org>
2019-05-03 14:18:08jdemeyerlinkissue34214 messages
2019-05-03 14:18:08jdemeyercreate