summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-26 21:02:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-26 21:02:29 (GMT)
commit5604ef3e36756e59d3396ed16d7a94de2687e0ac (patch)
tree73c134b68d7a8536a9002cf427af96e67dafebf7 /Misc
parent59ff2c56402362702054fa06c2b360326941e940 (diff)
parentd7c8fbf89e751d43c56de0071702d2578676d0a1 (diff)
downloadcpython-5604ef3e36756e59d3396ed16d7a94de2687e0ac.zip
cpython-5604ef3e36756e59d3396ed16d7a94de2687e0ac.tar.gz
cpython-5604ef3e36756e59d3396ed16d7a94de2687e0ac.tar.bz2
Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error.
This also adds a test for issue #5319, whose resolution introduced the issue.
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 c60cea0..ceb3582 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -395,6 +395,9 @@ Core and Builtins
Library
-------
+- Issue #13444: When stdout has been closed explicitly, we should not attempt
+ to flush it at shutdown and print an error.
+
- Issue #12567: The curses module uses Unicode functions for Unicode arguments
when it is linked to the ncurses library. It encodes also Unicode strings to
the locale encoding instead of UTF-8.