summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-26 17:27:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-26 17:27:56 (GMT)
commitdbe0982bc515cb1a881d4bf7728d265e58803bf0 (patch)
treeb2d664e02a4fe763adc7b4d808ed18169551db69 /Misc/NEWS
parent0742cae3357fcd7c41498b21060050e7cca788b1 (diff)
downloadcpython-dbe0982bc515cb1a881d4bf7728d265e58803bf0.zip
cpython-dbe0982bc515cb1a881d4bf7728d265e58803bf0.tar.gz
cpython-dbe0982bc515cb1a881d4bf7728d265e58803bf0.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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2516735..9c0ed5a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,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 #20105: the codec exception chaining now correctly sets the
traceback of the original exception as its __traceback__ attribute.