(self, future)
| 122 | self._decrement_pending_calls() |
| 123 | |
| 124 | def add_exception(self, future): |
| 125 | super().add_exception(future) |
| 126 | if self.stop_on_exception: |
| 127 | self.event.set() |
| 128 | else: |
| 129 | self._decrement_pending_calls() |
| 130 | |
| 131 | def add_cancelled(self, future): |
| 132 | super().add_cancelled(future) |
nothing calls this directly
no test coverage detected