(self)
| 71 | |
| 72 | class ContentLengthHandler(RequestHandler): |
| 73 | def get(self): |
| 74 | self.stream = self.detach() |
| 75 | IOLoop.current().spawn_callback(self.write_response) |
| 76 | |
| 77 | @gen.coroutine |
| 78 | def write_response(self): |
nothing calls this directly
no test coverage detected