(self, fd, flag)
| 117 | pass |
| 118 | |
| 119 | def register(self, fd, flag): |
| 120 | self.fd = fd |
| 121 | # note: The 'timeout' argument is received as *milliseconds* |
| 122 | def poll(self, timeout: float | None = None) -> list[int]: |
| 123 | if timeout is None: |
no outgoing calls
no test coverage detected