summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-15 18:11:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-15 18:11:54 (GMT)
commit084daa2f7492ae809b5ce09d2cdbad6ed5a71848 (patch)
tree9677bfc6f88f04a9b82a89d9698f5e6e65c8193f /Misc
parente0035a212ba6acbff6b1262dd6930a3a7ec1f204 (diff)
downloadcpython-084daa2f7492ae809b5ce09d2cdbad6ed5a71848.zip
cpython-084daa2f7492ae809b5ce09d2cdbad6ed5a71848.tar.gz
cpython-084daa2f7492ae809b5ce09d2cdbad6ed5a71848.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')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4fc3659..424e72a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -917,6 +917,7 @@ Paul Rubin
Sam Ruby
Demur Rumed
Audun S. Runde
+Eran Rundstein
Rauli Ruohonen
Jeff Rush
Sam Rushing
diff --git a/Misc/NEWS b/Misc/NEWS
index d6f5754..57cab2d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,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 #16248: Disable code execution from the user's home directory by
tkinter when the -E flag is passed to Python. Patch by Zachary Ware.