(self, future)
| 105 | self.event.set() |
| 106 | |
| 107 | def add_cancelled(self, future): |
| 108 | super().add_cancelled(future) |
| 109 | self.event.set() |
| 110 | |
| 111 | class _AllCompletedWaiter(_Waiter): |
| 112 | """Used by wait(return_when=FIRST_EXCEPTION and ALL_COMPLETED).""" |
nothing calls this directly
no test coverage detected