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 /Doc/using | |
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 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 8a5a662..72b77cd 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -502,8 +502,9 @@ These environment variables influence Python's behavior. If this environment variable is set, :func:`faulthandler.enable` is called at startup: install a handler for :const:`SIGSEGV`, :const:`SIGFPE`, - :const:`SIGBUS` and :const:`SIGILL` signals to dump the Python traceback. - This is equivalent to :option:`-X` ``faulthandler`` option. + :const:`SIGABRT`, :const:`SIGBUS` and :const:`SIGILL` signals to dump the + Python traceback. This is equivalent to :option:`-X` ``faulthandler`` + option. Debug-mode variables |