summaryrefslogtreecommitdiff
path: root/Lib/wsgiref
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-10-21 14:14:34 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-10-21 14:14:34 +0200
commit550841253fc237f7aed14663de9717d6313e340d (patch)
tree0bb9115171c114ec751231741b159f15d6ff3fc3 /Lib/wsgiref
parent8cd45bd48d495a78280e8c8c9377a9a9d4372bb2 (diff)
parent66510fedb410804b224360c6bf75041920b77709 (diff)
downloadcpython-git-550841253fc237f7aed14663de9717d6313e340d.tar.gz
Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.
Diffstat (limited to 'Lib/wsgiref')
-rw-r--r--Lib/wsgiref/handlers.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py
index 67064a6875..63d5993eca 100644
--- a/Lib/wsgiref/handlers.py
+++ b/Lib/wsgiref/handlers.py
@@ -174,11 +174,13 @@ class BaseHandler:
in the event loop to iterate over the data, and to call
'self.close()' once the response is finished.
"""
- if not self.result_is_file() or not self.sendfile():
- for data in self.result:
- self.write(data)
- self.finish_content()
- self.close()
+ try:
+ if not self.result_is_file() or not self.sendfile():
+ for data in self.result:
+ self.write(data)
+ self.finish_content()
+ finally:
+ self.close()
def get_scheme(self):