summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-20 22:35:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-20 22:35:09 (GMT)
commita3712a9a6c9a05de287d2403cdb5aecbc417ce93 (patch)
tree3631c05821b514328d9d4cec31f77f27d0570e53 /Misc
parent5e3d7a401d8568d3308b8928b146a9c306bc3ca8 (diff)
downloadcpython-a3712a9a6c9a05de287d2403cdb5aecbc417ce93.zip
cpython-a3712a9a6c9a05de287d2403cdb5aecbc417ce93.tar.gz
cpython-a3712a9a6c9a05de287d2403cdb5aecbc417ce93.tar.bz2
Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.
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 83518d24..bcabefa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #5700: io.FileIO() called flush() after closing the file.
+ flush() was not called in close() if closefd=False.
+
- Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
differs from file system encoding (e.g. on Mac OS).