From: Guido van Rossum <guido@python.org>
Date: Mon, 13 May 2019 16:00:53 +0000 (-0700)
Subject: Fix typo in NEWS item about IDLE (os.flush() should be os.fsync()) (#13284)
X-Git-Tag: v3.8.0b1~386
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85c69d5c4c5682a70201612128e838d438c01499;p=python

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

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 18b31b1fe5..2a905bf0ee 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.