diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 09:39:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 09:39:17 (GMT) |
commit | 404cdc5a924a294a17c04b745df5549c32e08130 (patch) | |
tree | 4a795a02e514252d0fb796dfa09ab810275f2f33 /Doc/library/faulthandler.rst | |
parent | bd31b7c48317eecf981215afbb1f30c81769acbf (diff) | |
download | cpython-404cdc5a924a294a17c04b745df5549c32e08130.zip cpython-404cdc5a924a294a17c04b745df5549c32e08130.tar.gz cpython-404cdc5a924a294a17c04b745df5549c32e08130.tar.bz2 |
faulthandler: add Windows exception handler
Issue #23848: On Windows, faulthandler.enable() now also installs an exception
handler to dump the traceback of all Python threads on any Windows exception,
not only on UNIX signals (SIGSEGV, SIGFPE, SIGABRT).
Diffstat (limited to 'Doc/library/faulthandler.rst')
-rw-r--r-- | Doc/library/faulthandler.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst index 3a5badd..3c49649 100644 --- a/Doc/library/faulthandler.rst +++ b/Doc/library/faulthandler.rst @@ -68,6 +68,9 @@ Fault handler state .. versionchanged:: 3.5 Added support for passing file descriptor to this function. + .. versionchanged:: 3.6 + On Windows, a handler for Windows exception is also installed. + .. function:: disable() Disable the fault handler: uninstall the signal handlers installed by |