(self)
| 550 | raise RuntimeError('Event loop is closed') |
| 551 | |
| 552 | def _check_default_executor(self): |
| 553 | if self._executor_shutdown_called: |
| 554 | raise RuntimeError('Executor shutdown has been called') |
| 555 | |
| 556 | def _asyncgen_finalizer_hook(self, agen): |
| 557 | self._asyncgens.discard(agen) |