summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-10-21 12:14:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-10-21 12:14:34 (GMT)
commit550841253fc237f7aed14663de9717d6313e340d (patch)
tree0bb9115171c114ec751231741b159f15d6ff3fc3 /Misc
parent8cd45bd48d495a78280e8c8c9377a9a9d4372bb2 (diff)
parent66510fedb410804b224360c6bf75041920b77709 (diff)
downloadcpython-550841253fc237f7aed14663de9717d6313e340d.zip
cpython-550841253fc237f7aed14663de9717d6313e340d.tar.gz
cpython-550841253fc237f7aed14663de9717d6313e340d.tar.bz2
Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 1e16600..808d1ba 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1178,6 +1178,7 @@ Alberto Trevino
Matthias Troffaes
John Tromp
Jason Trowbridge
+Brent Tubbs
Anthony Tuininga
Erno Tukia
David Turner
diff --git a/Misc/NEWS b/Misc/NEWS
index bd4177c..deedbdb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #16220: wsgiref now always calls close() on an iterable response.
+ Patch by Brent Tubbs.
+
- Issue #16270: urllib may hang when used for retrieving files via FTP by using
a context manager. Patch by Giampaolo Rodola'.