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

Method is_alive

Lib/threading.py:1445–1448  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1443 _DeleteDummyThreadOnDel(self)
1444
1445 def is_alive(self):
1446 if not self._os_thread_handle.is_done() and self._started.is_set():
1447 return True
1448 raise RuntimeError("thread is not alive")
1449
1450 def join(self, timeout=None):
1451 raise RuntimeError("cannot join a dummy thread")

Callers

nothing calls this directly

Calls 1

is_setMethod · 0.45

Tested by

no test coverage detected