(self, future)
| 129 | self._decrement_pending_calls() |
| 130 | |
| 131 | def add_cancelled(self, future): |
| 132 | super().add_cancelled(future) |
| 133 | self._decrement_pending_calls() |
| 134 | |
| 135 | class _AcquireFutures(object): |
| 136 | """A context manager that does an ordered acquire of Future conditions.""" |
nothing calls this directly
no test coverage detected