(self)
| 555 | raise RuntimeError('Event loop is closed') |
| 556 | |
| 557 | def _check_default_executor(self): |
| 558 | if self._executor_shutdown_called: |
| 559 | raise RuntimeError('Executor shutdown has been called') |
| 560 | |
| 561 | def _asyncgen_finalizer_hook(self, agen): |
| 562 | self._asyncgens.discard(agen) |