summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-23 09:39:17 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-03-23 09:39:17 (GMT)
commit404cdc5a924a294a17c04b745df5549c32e08130 (patch)
tree4a795a02e514252d0fb796dfa09ab810275f2f33 /Doc/whatsnew/3.6.rst
parentbd31b7c48317eecf981215afbb1f30c81769acbf (diff)
downloadcpython-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/whatsnew/3.6.rst')
-rw-r--r--Doc/whatsnew/3.6.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 986c145..928d748 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -199,6 +199,14 @@ directives ``%G``, ``%u`` and ``%V``.
(Contributed by Ashley Anderson in :issue:`12006`.)
+faulthandler
+------------
+
+On Windows, the :mod:`faulthandler` module now installs an handler for Windows
+exceptions: see :func:`faulthandler.enable`. (Contributed by Victor Stinner in
+:issue:`23848`.)
+
+
os
--