(self, result)
| 182 | raise RuntimeError("_WaitCancelFuture must not be cancelled") |
| 183 | |
| 184 | def set_result(self, result): |
| 185 | super().set_result(result) |
| 186 | if self._done_callback is not None: |
| 187 | self._done_callback(self) |
| 188 | |
| 189 | def set_exception(self, exception): |
| 190 | super().set_exception(exception) |
nothing calls this directly
no test coverage detected