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