Jeroen Demeyer <j.deme...@ugent.be> added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue34214>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to