(self, exc)
| 616 | self._loop.call_soon(self._call_connection_lost, exc) |
| 617 | |
| 618 | def _call_connection_lost(self, exc): |
| 619 | try: |
| 620 | self._protocol.connection_lost(exc) |
| 621 | finally: |
| 622 | self._pipe.close() |
| 623 | self._pipe = None |
| 624 | self._protocol = None |
| 625 | self._loop = None |
| 626 | |
| 627 | |
| 628 | class _UnixWritePipeTransport(transports._FlowControlMixin, |
nothing calls this directly
no test coverage detected