summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-15 18:22:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-15 18:22:30 (GMT)
commitd20e7745eeb99c5f2089b5b6ffa351658cb4e839 (patch)
tree018ae0d638f113f4c06ac52db5c9e50a1f0e8378 /Misc/NEWS
parent30505413df61f1cd7d550d6b90e08e691c62479a (diff)
parent084daa2f7492ae809b5ce09d2cdbad6ed5a71848 (diff)
downloadcpython-d20e7745eeb99c5f2089b5b6ffa351658cb4e839.zip
cpython-d20e7745eeb99c5f2089b5b6ffa351658cb4e839.tar.gz
cpython-d20e7745eeb99c5f2089b5b6ffa351658cb4e839.tar.bz2
Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished.
Patch by Eran Rundstein.
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 604e6fa..5020c9d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,10 @@ Core and Builtins
Library
-------
+- Issue #16298: In HTTPResponse.read(), close the socket when there is no
+ Content-Length and the incoming stream is finished. Patch by Eran
+ Rundstein.
+
- Issue #15872: Fix 3.3 regression introduced by the new fd-based shutil.rmtree
that caused it to not ignore certain errors when ignore_errors was set.
Patch by Alessandro Moura and Serhiy Storchaka.