diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-03 15:07:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-03 15:07:32 (GMT) |
commit | d03ce4ae3d71ba84e1e30cf0cf221ec89ad5aa67 (patch) | |
tree | 8f31197e6e796da6d6cc1490647f85ebb4a7179a /Misc | |
parent | 7fc972a2aa041a978b8c4b1b58d6406100a2db8d (diff) | |
parent | 94dc6736bd4a72e9af36d4df1c337bd0db5fd69c (diff) | |
download | cpython-d03ce4ae3d71ba84e1e30cf0cf221ec89ad5aa67.zip cpython-d03ce4ae3d71ba84e1e30cf0cf221ec89ad5aa67.tar.gz cpython-d03ce4ae3d71ba84e1e30cf0cf221ec89ad5aa67.tar.bz2 |
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
stream or a decoder produces data of an unexpected type (i.e. when
io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -163,6 +163,10 @@ Core and Builtins Library ------- +- Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying + stream or a decoder produces data of an unexpected type (i.e. when + io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec). + - Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length. |