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

Method __init__

Lib/asyncio/windows_events.py:313–316  ·  view source on GitHub ↗
(self, proactor=None)

Source from the content-addressed store, hash-verified

311 """Windows version of proactor event loop using IOCP."""
312
313 def __init__(self, proactor=None):
314 if proactor is None:
315 proactor = IocpProactor()
316 super().__init__(proactor)
317
318 def _run_forever_setup(self):
319 assert self._self_reading_future is None

Callers

nothing calls this directly

Calls 3

IocpProactorClass · 0.85
superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected