(self, future)
| 95 | self.event.set() |
| 96 | |
| 97 | def add_exception(self, future): |
| 98 | super().add_exception(future) |
| 99 | self.event.set() |
| 100 | |
| 101 | def add_cancelled(self, future): |
| 102 | super().add_cancelled(future) |
nothing calls this directly
no test coverage detected