summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-26 20:59:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-26 20:59:36 (GMT)
commitd7c8fbf89e751d43c56de0071702d2578676d0a1 (patch)
tree954f940674aa999f87712fd0fb1d07ed64d2c817 /Misc
parentfb36b3f6a0d57abeb6f953d9b4f72ddb4e3c4709 (diff)
downloadcpython-d7c8fbf89e751d43c56de0071702d2578676d0a1.zip
cpython-d7c8fbf89e751d43c56de0071702d2578676d0a1.tar.gz
cpython-d7c8fbf89e751d43c56de0071702d2578676d0a1.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 fba2c3d..eaadaaf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,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 #12856: Ensure child processes do not inherit the parent's random
seed for filename generation in the tempfile module. Patch by Brian
Harring.