Returns True if the event loop was closed.
(self)
| 750 | executor.shutdown(wait=False) |
| 751 | |
| 752 | def is_closed(self): |
| 753 | """Returns True if the event loop was closed.""" |
| 754 | return self._closed |
| 755 | |
| 756 | def __del__(self, _warn=warnings.warn): |
| 757 | if not self.is_closed(): |
no outgoing calls
no test coverage detected