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 xtreak
Recipients asdwqii, xtreak
Date 2018-11-29.19:02:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543518155.76.0.788709270274.issue35354@psf.upfronthosting.co.za>
In-reply-to
Content
I think I have seen this bug reported elsewhere but can't find it now.

A simple reproducer : 

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

Running under gdb on Ubuntu : 

Program received signal SIGABRT, Aborted.
0x00007ffff7115428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
54	../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
History
Date User Action Args
2018-11-29 19:02:35xtreaksetrecipients: + xtreak, asdwqii
2018-11-29 19:02:35xtreaksetmessageid: <1543518155.76.0.788709270274.issue35354@psf.upfronthosting.co.za>
2018-11-29 19:02:35xtreaklinkissue35354 messages
2018-11-29 19:02:35xtreakcreate