summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:13:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:13:33 (GMT)
commit7c4048918053e457eadaf76f2a1906d2cff879f2 (patch)
tree4e5bfb88addfef2422c47a031315b72075018348 /Misc/NEWS
parent0a42982316e0e64ac363e157eab43004b09f23c4 (diff)
downloadcpython-7c4048918053e457eadaf76f2a1906d2cff879f2.zip
cpython-7c4048918053e457eadaf76f2a1906d2cff879f2.tar.gz
cpython-7c4048918053e457eadaf76f2a1906d2cff879f2.tar.bz2
Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence
on a file opened in read+write mode (namely: reading, seeking a bit forward, writing, then seeking before the previous write but still within buffered data, and writing again).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f065b5a..07e8a56 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,6 +69,11 @@ Core and Builtins
Library
-------
+- Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence
+ on a file opened in read+write mode (namely: reading, seeking a bit forward,
+ writing, then seeking before the previous write but still within buffered
+ data, and writing again).
+
- Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError.
With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused
IDLE to exit. Converted to valid Unicode null in PythonCmd().