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

Method __init__

Lib/asyncio/windows_events.py:196–201  ·  view source on GitHub ↗
(self, ov, handle, wait_handle, proactor, *, loop=None)

Source from the content-addressed store, hash-verified

194
195class _WaitHandleFuture(_BaseWaitHandleFuture):
196 def __init__(self, ov, handle, wait_handle, proactor, *, loop=None):
197 super().__init__(ov, handle, wait_handle, loop=loop)
198 self._proactor = proactor
199 self._unregister_proactor = True
200 self._event = _overlapped.CreateEvent(None, True, False, None)
201 self._event_fut = None
202
203 def _unregister_wait_cb(self, fut):
204 if self._event is not None:

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected