MCPcopy Index your code
hub / github.com/python/cpython / _call_connection_lost

Method _call_connection_lost

Lib/asyncio/unix_events.py:618–625  ·  view source on GitHub ↗
(self, exc)

Source from the content-addressed store, hash-verified

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
628class _UnixWritePipeTransport(transports._FlowControlMixin,

Callers

nothing calls this directly

Calls 2

connection_lostMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected