(self, done: bool)
| 349 | return self._handling_future |
| 350 | |
| 351 | def _report_handled(self, done: bool) -> None: |
| 352 | chain = self._handling_future |
| 353 | assert chain |
| 354 | self._handling_future = None |
| 355 | chain.set_result(done) |
| 356 | |
| 357 | def _check_not_handled(self) -> None: |
| 358 | if not self._handling_future: |
no outgoing calls
no test coverage detected