(self)
| 551 | raise NotImplementedError |
| 552 | |
| 553 | def _check_closed(self): |
| 554 | if self._closed: |
| 555 | raise RuntimeError('Event loop is closed') |
| 556 | |
| 557 | def _check_default_executor(self): |
| 558 | if self._executor_shutdown_called: |
no outgoing calls
no test coverage detected