[Python-checkins] Fix typo in NEWS item about IDLE (os.flush() should be os.fsync()) (#13284)

Terry Jan Reedy webhook-mailer at python.org
Mon May 13 12:01:05 EDT 2019


https://github.com/python/cpython/commit/85c69d5c4c5682a70201612128e838d438c01499
commit: 85c69d5c4c5682a70201612128e838d438c01499
branch: master
author: Guido van Rossum <guido at python.org>
committer: Terry Jan Reedy <tjreedy at udel.edu>
date: 2019-05-13T12:00:53-04:00
summary:

Fix typo in NEWS item about IDLE (os.flush() should be os.fsync()) (#13284)

files:
M Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst

diff --git a/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst b/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
index 18b31b1fe505..2a905bf0eecf 100644
--- a/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
+++ b/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
@@ -1 +1 @@
-When saving a file, call os.flush() so bits are flushed to e.g. USB drive.
+When saving a file, call os.fsync() so bits are flushed to e.g. USB drive.



More information about the Python-checkins mailing list