summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:16:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:16:28 (GMT)
commit00dd182b8ec1629a35cb6e9d551dedff6b7149f7 (patch)
tree733a51f75a7d40a5d3f395fb609348d0ae4eeb66 /Misc
parentb00d0c49448c48b6ddbd85f1328edf8794ae20f7 (diff)
parent7c4048918053e457eadaf76f2a1906d2cff879f2 (diff)
downloadcpython-00dd182b8ec1629a35cb6e9d551dedff6b7149f7.zip
cpython-00dd182b8ec1629a35cb6e9d551dedff6b7149f7.tar.gz
cpython-00dd182b8ec1629a35cb6e9d551dedff6b7149f7.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')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index de0ce38..6b0a6b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,12 @@ 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().