summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-06-09 06:15:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-06-09 06:15:42 (GMT)
commit85e4235c0e702b180f3f50b0124fd40c2f460be0 (patch)
treeaeab6bfae28ee6212e222b60f4ed7319aff12037 /Misc
parent9f488512a8f95684efe60a0fa6422389fbcd2ef6 (diff)
parent8a8f7f983099f172d1f7c25d4fd99f5c0eb14072 (diff)
downloadcpython-85e4235c0e702b180f3f50b0124fd40c2f460be0.zip
cpython-85e4235c0e702b180f3f50b0124fd40c2f460be0.tar.gz
cpython-85e4235c0e702b180f3f50b0124fd40c2f460be0.tar.bz2
Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b0479b..90f2208 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -92,6 +92,8 @@ Core and Builtins
Library
-------
+- Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.
+
- Issue #11709: Fix the pydoc.help function to not fail when sys.stdin is not a
valid file.