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 ThePokestarFan
Recipients ThePokestarFan, ned.deily, ronaldoussoren
Date 2020-03-20.02:25:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584671119.97.0.0188719299435.issue40021@roundup.psfhosted.org>
In-reply-to
Content
If I set up a simple recursion exception function, that calls itself every time an error is raised, Python throws a SIGABRT and crashes due to a "Stack Overflow". 

def x():
    try:
        raise Exception()
    except Exception:
        x()

Oddly enough, my system installation of Python 2.7 threw a RuntimeError instead of aborting, which is what I expected.
History
Date User Action Args
2020-03-20 02:25:20ThePokestarFansetrecipients: + ThePokestarFan, ronaldoussoren, ned.deily
2020-03-20 02:25:19ThePokestarFansetmessageid: <1584671119.97.0.0188719299435.issue40021@roundup.psfhosted.org>
2020-03-20 02:25:19ThePokestarFanlinkissue40021 messages
2020-03-20 02:25:19ThePokestarFancreate