diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 17:21:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 17:21:00 (GMT) |
commit | 8003850e22788c9e02b8dea7076858e01aa24f65 (patch) | |
tree | 699b86530151ae88b9c0493f6d6e2225f3b0daf9 /Misc | |
parent | 714d7ffd0d652e187deb13b96aae7a1bbfcdecca (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |