summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-01 12:13:55 +0200
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-01 12:13:55 +0200
commiteb92e63267528242069ef100470afec9147700ab (patch)
treed746756ff7e9d07631828f227049c4f4ba53dd25 /Python/pythonrun.c
parent370f6676d209f289252c5d94bbbdeca988914477 (diff)
downloadcpython-eb92e63267528242069ef100470afec9147700ab.tar.gz
Issue #11393: The fault handler handles also SIGABRT
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c1
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