summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-26 17:21:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-26 17:21:00 (GMT)
commit8003850e22788c9e02b8dea7076858e01aa24f65 (patch)
tree699b86530151ae88b9c0493f6d6e2225f3b0daf9 /Misc
parent714d7ffd0d652e187deb13b96aae7a1bbfcdecca (diff)
downloadcpython-8003850e22788c9e02b8dea7076858e01aa24f65.zip
cpython-8003850e22788c9e02b8dea7076858e01aa24f65.tar.gz
cpython-8003850e22788c9e02b8dea7076858e01aa24f65.tar.bz2
Issue #8260: The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ea6f1d7..89610c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,10 @@ Core and Builtins
Library
-------
+- Issue #8260: The read(), readline() and readlines() methods of
+ codecs.StreamReader returned incomplete data when were called after
+ readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
+
- Issue #20317: ExitStack.__exit__ could create a self-referential loop if an
exception raised by a cleanup operation already had its context set
correctly (for example, by the @contextmanager decorator). The infinite