summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:25:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-12 22:25:53 (GMT)
commitb89b31a1588b78f9c08ed8b4f5519571c2a44a42 (patch)
treeb0b6151b7bb16c5835fc0049b02e140931365532 /Misc
parent30536d1b77f78a049621d0fee873324be95b393a (diff)
parent00dd182b8ec1629a35cb6e9d551dedff6b7149f7 (diff)
downloadcpython-b89b31a1588b78f9c08ed8b4f5519571c2a44a42.zip
cpython-b89b31a1588b78f9c08ed8b4f5519571c2a44a42.tar.gz
cpython-b89b31a1588b78f9c08ed8b4f5519571c2a44a42.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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 751f1e3..620d3d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -147,6 +147,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 #9971: Write an optimized implementation of BufferedReader.readinto().
Patch by John O'Connor.