summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-06-05 22:54:15 (GMT)
committerGitHub <noreply@github.com>2017-06-05 22:54:15 (GMT)
commite6a23c8f9a3ce05b759599696cc131c2d9d147ac (patch)
treea94a11d18829920638d1f54d1f388bf39295a9e6 /Misc
parent1bced56567335745f91676192fc39c06aab30da9 (diff)
downloadcpython-e6a23c8f9a3ce05b759599696cc131c2d9d147ac.zip
cpython-e6a23c8f9a3ce05b759599696cc131c2d9d147ac.tar.gz
cpython-e6a23c8f9a3ce05b759599696cc131c2d9d147ac.tar.bz2
bpo-30557: faulthandler now correctly filters and displays exception codes on Windows (#1924)
* bpo-30557: faulthandler now correctly filters and displays exception codes on Windows * Adds test for non-fatal exceptions. * Adds bpo number to comment.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e6e8f95..1b5794b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -345,6 +345,9 @@ Extension Modules
Library
-------
+- bpo-30557: faulthandler now correctly filters and displays exception codes
+ on Windows
+
- bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through
attribute.