(self)
| 592 | connection.reader, loop=connection.loop) |
| 593 | |
| 594 | def _need_parse_response_body(self): |
| 595 | return (self.method.lower() != 'head' and |
| 596 | self.status not in [204, 304]) |
| 597 | |
| 598 | @asyncio.coroutine |
| 599 | def start(self, connection, read_until_eof=False): |