(self, future)
| 97 | """Used by wait(return_when=FIRST_COMPLETED).""" |
| 98 | |
| 99 | def add_result(self, future): |
| 100 | super().add_result(future) |
| 101 | self.event.set() |
| 102 | |
| 103 | def add_exception(self, future): |
| 104 | super().add_exception(future) |
nothing calls this directly
no test coverage detected