(self, future)
| 101 | self.event.set() |
| 102 | |
| 103 | def add_exception(self, future): |
| 104 | super().add_exception(future) |
| 105 | self.event.set() |
| 106 | |
| 107 | def add_cancelled(self, future): |
| 108 | super().add_cancelled(future) |
nothing calls this directly
no test coverage detected