diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 17:27:56 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 17:27:56 (GMT) |
commit | dbe0982bc515cb1a881d4bf7728d265e58803bf0 (patch) | |
tree | b2d664e02a4fe763adc7b4d808ed18169551db69 /Misc/NEWS | |
parent | 0742cae3357fcd7c41498b21060050e7cca788b1 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |