(self, future)
| 78 | self.event.set() |
| 79 | |
| 80 | def add_exception(self, future): |
| 81 | with self.lock: |
| 82 | super(_AsCompletedWaiter, self).add_exception(future) |
| 83 | self.event.set() |
| 84 | |
| 85 | def add_cancelled(self, future): |
| 86 | with self.lock: |
nothing calls this directly
no test coverage detected