Returns True if the event loop was closed.
(self)
| 755 | executor.shutdown(wait=False) |
| 756 | |
| 757 | def is_closed(self): |
| 758 | """Returns True if the event loop was closed.""" |
| 759 | return self._closed |
| 760 | |
| 761 | def __del__(self, _warn=warnings.warn): |
| 762 | if not self.is_closed(): |
no outgoing calls
no test coverage detected