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

Method is_running

Lib/asyncio/base_events.py:767–769  ·  view source on GitHub ↗

Returns True if the event loop is running.

(self)

Source from the content-addressed store, hash-verified

765 self.close()
766
767 def is_running(self):
768 """Returns True if the event loop is running."""
769 return (self._thread_id is not None)
770
771 def time(self):
772 """Return the time according to the event loop's clock.

Callers 5

__repr__Method · 0.95
_check_runningMethod · 0.95
closeMethod · 0.95
__del__Method · 0.95
set_debugMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected