(self, connection)
| 586 | return self._continue is not None |
| 587 | |
| 588 | def _setup_connection(self, connection): |
| 589 | self._reader = connection.reader |
| 590 | self._connection = connection |
| 591 | self.content = self.flow_control_class( |
| 592 | connection.reader, loop=connection.loop) |
| 593 | |
| 594 | def _need_parse_response_body(self): |
| 595 | return (self.method.lower() != 'head' and |
no outgoing calls