(self, future)
| 128 | self._decrement_pending_calls() |
| 129 | |
| 130 | def add_exception(self, future): |
| 131 | super().add_exception(future) |
| 132 | if self.stop_on_exception: |
| 133 | self.event.set() |
| 134 | else: |
| 135 | self._decrement_pending_calls() |
| 136 | |
| 137 | def add_cancelled(self, future): |
| 138 | super().add_cancelled(future) |
nothing calls this directly
no test coverage detected