(self, proactor=None)
| 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 |
nothing calls this directly
no test coverage detected