diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-20 22:35:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-20 22:35:09 (GMT) |
commit | a3712a9a6c9a05de287d2403cdb5aecbc417ce93 (patch) | |
tree | 3631c05821b514328d9d4cec31f77f27d0570e53 /Misc | |
parent | 5e3d7a401d8568d3308b8928b146a9c306bc3ca8 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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). |