diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-01 12:13:55 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-01 12:13:55 +0200 |
commit | eb92e63267528242069ef100470afec9147700ab (patch) | |
tree | d746756ff7e9d07631828f227049c4f4ba53dd25 /Python/pythonrun.c | |
parent | 370f6676d209f289252c5d94bbbdeca988914477 (diff) | |
download | cpython-eb92e63267528242069ef100470afec9147700ab.tar.gz |
Issue #11393: The fault handler handles also SIGABRT
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f787a4f8b3..1c36e63ac4 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -2124,6 +2124,7 @@ Py_FatalError(const char *msg) fflush(stderr); _Py_DumpTraceback(fd, tstate); } + _PyFaulthandler_Fini(); } #ifdef MS_WINDOWS |