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 yury
Recipients yury
Date 2009-05-15.08:29:37
SpamBayes Score 0.00025146364
Marked as misclassified No
Message-id <1242376180.99.0.271687505005.issue6028@psf.upfronthosting.co.za>
In-reply-to
Content
def error_handle():
    try:
        print(5/0)
    except:
        error_handle()

error_handle()

Fatal Python error: Cannot recover from stack overflow.
Aborted

The interpreter should not crash. Perhaps a RuntimeError should be
thrown instead.
History
Date User Action Args
2009-05-15 08:29:41yurysetrecipients: + yury
2009-05-15 08:29:40yurysetmessageid: <1242376180.99.0.271687505005.issue6028@psf.upfronthosting.co.za>
2009-05-15 08:29:38yurylinkissue6028 messages
2009-05-15 08:29:38yurycreate