Avoid unhandled-exception warnings from spawned coroutines.
(self, future: Future)
| 760 | app_log.error("Exception in callback %r", callback, exc_info=True) |
| 761 | |
| 762 | def _discard_future_result(self, future: Future) -> None: |
| 763 | """Avoid unhandled-exception warnings from spawned coroutines.""" |
| 764 | future.result() |
| 765 | |
| 766 | def split_fd( |
| 767 | self, fd: Union[int, _Selectable] |