diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-01 10:13:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-01 10:13:55 (GMT) |
commit | d727e23243ab5479b03aab1f924ca7ec0bccbcb6 (patch) | |
tree | c05dc8b13da2bebd300684b462af046384c2379a /Python/pythonrun.c | |
parent | bc6a4db66d576b29462a965e78f4d4a1dce494f0 (diff) | |
download | cpython-d727e23243ab5479b03aab1f924ca7ec0bccbcb6.zip cpython-d727e23243ab5479b03aab1f924ca7ec0bccbcb6.tar.gz cpython-d727e23243ab5479b03aab1f924ca7ec0bccbcb6.tar.bz2 |
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 f787a4f..1c36e63 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 |