(self, future)
| 73 | self.lock = threading.Lock() |
| 74 | |
| 75 | def add_result(self, future): |
| 76 | with self.lock: |
| 77 | super(_AsCompletedWaiter, self).add_result(future) |
| 78 | self.event.set() |
| 79 | |
| 80 | def add_exception(self, future): |
| 81 | with self.lock: |
nothing calls this directly
no test coverage detected