(self, exception)
| 187 | self._done_callback(self) |
| 188 | |
| 189 | def set_exception(self, exception): |
| 190 | super().set_exception(exception) |
| 191 | if self._done_callback is not None: |
| 192 | self._done_callback(self) |
| 193 | |
| 194 | |
| 195 | class _WaitHandleFuture(_BaseWaitHandleFuture): |
nothing calls this directly
no test coverage detected