(self, match)
| 1316 | |
| 1317 | @test_utils.Router.define('/chunked$') |
| 1318 | def chunked(self, match): |
| 1319 | resp = self._start_response(200) |
| 1320 | resp.add_chunking_filter(100) |
| 1321 | self._response(resp, chunked=True) |
| 1322 | |
| 1323 | @test_utils.Router.define('/keepalive$') |
| 1324 | def keepalive(self, match): |
nothing calls this directly
no test coverage detected