(self)
| 345 | self._did_throw = False |
| 346 | |
| 347 | def _start_handling(self) -> "asyncio.Future[bool]": |
| 348 | self._handling_future = asyncio.Future() |
| 349 | return self._handling_future |
| 350 | |
| 351 | def _report_handled(self, done: bool) -> None: |
| 352 | chain = self._handling_future |