(self, future)
| 99 | self.event.set() |
| 100 | |
| 101 | def add_cancelled(self, future): |
| 102 | super().add_cancelled(future) |
| 103 | self.event.set() |
| 104 | |
| 105 | class _AllCompletedWaiter(_Waiter): |
| 106 | """Used by wait(return_when=FIRST_EXCEPTION and ALL_COMPLETED).""" |
nothing calls this directly
no test coverage detected