(status, headers)
| 251 | response = web.storage() |
| 252 | |
| 253 | def start_response(status, headers): |
| 254 | response.status = status |
| 255 | response.headers = dict(headers) |
| 256 | response.header_items = headers |
| 257 | |
| 258 | data = self.wsgifunc()(env, start_response) |
| 259 | response.data = b"".join(data) |