Stop listening for events on ``fd``. .. versionchanged:: 4.0 Added the ability to pass file-like objects in addition to raw file descriptors.
(self, fd: Union[int, _Selectable])
| 430 | raise NotImplementedError() |
| 431 | |
| 432 | def remove_handler(self, fd: Union[int, _Selectable]) -> None: |
| 433 | """Stop listening for events on ``fd``. |
| 434 | |
| 435 | .. versionchanged:: 4.0 |
| 436 | Added the ability to pass file-like objects in addition to |
| 437 | raw file descriptors. |
| 438 | """ |
| 439 | raise NotImplementedError() |
| 440 | |
| 441 | def start(self) -> None: |
| 442 | """Starts the I/O loop. |
no outgoing calls
no test coverage detected