(self, future)
| 91 | """Used by wait(return_when=FIRST_COMPLETED).""" |
| 92 | |
| 93 | def add_result(self, future): |
| 94 | super().add_result(future) |
| 95 | self.event.set() |
| 96 | |
| 97 | def add_exception(self, future): |
| 98 | super().add_exception(future) |
nothing calls this directly
no test coverage detected