(self, exc)
| 611 | self._close(exc) |
| 612 | |
| 613 | def _close(self, exc): |
| 614 | self._closing = True |
| 615 | self._loop._remove_reader(self._fileno) |
| 616 | self._loop.call_soon(self._call_connection_lost, exc) |
| 617 | |
| 618 | def _call_connection_lost(self, exc): |
| 619 | try: |
no test coverage detected