MCPcopy Index your code
hub / github.com/RustPython/RustPython / is_closed

Method is_closed

Lib/asyncio/base_events.py:752–754  ·  view source on GitHub ↗

Returns True if the event loop was closed.

(self)

Source from the content-addressed store, hash-verified

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():

Callers 4

__repr__Method · 0.95
_do_shutdownMethod · 0.95
__del__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected