Changes the events we listen for ``fd``. .. versionchanged:: 4.0 Added the ability to pass file-like objects in addition to raw file descriptors.
(self, fd: Union[int, _Selectable], events: int)
| 421 | raise NotImplementedError() |
| 422 | |
| 423 | def update_handler(self, fd: Union[int, _Selectable], events: int) -> None: |
| 424 | """Changes the events we listen for ``fd``. |
| 425 | |
| 426 | .. versionchanged:: 4.0 |
| 427 | Added the ability to pass file-like objects in addition to |
| 428 | raw file descriptors. |
| 429 | """ |
| 430 | raise NotImplementedError() |
| 431 | |
| 432 | def remove_handler(self, fd: Union[int, _Selectable]) -> None: |
| 433 | """Stop listening for events on ``fd``. |
no outgoing calls
no test coverage detected