MCPcopy Index your code
hub / github.com/python/cpython / is_closed

Method is_closed

Lib/asyncio/base_events.py:757–759  ·  view source on GitHub ↗

Returns True if the event loop was closed.

(self)

Source from the content-addressed store, hash-verified

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

Callers 4

__repr__Method · 0.95
_do_shutdownMethod · 0.95
__del__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected