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

Method __init__

Lib/asyncio/proactor_events.py:439–442  ·  view source on GitHub ↗
(self, *args, **kw)

Source from the content-addressed store, hash-verified

437
438class _ProactorWritePipeTransport(_ProactorBaseWritePipeTransport):
439 def __init__(self, *args, **kw):
440 super().__init__(*args, **kw)
441 self._read_fut = self._loop._proactor.recv(self._sock, 16)
442 self._read_fut.add_done_callback(self._pipe_closed)
443
444 def _pipe_closed(self, fut):
445 if fut.cancelled():

Callers

nothing calls this directly

Calls 4

superClass · 0.85
__init__Method · 0.45
recvMethod · 0.45
add_done_callbackMethod · 0.45

Tested by

no test coverage detected