MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __init__

Method __init__

tools/python-3.11.9-amd64/Lib/threading.py:1430–1438  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1428class _DummyThread(Thread):
1429
1430 def __init__(self):
1431 Thread.__init__(self, name=_newname("Dummy-%d"), daemon=True)
1432
1433 self._started.set()
1434 self._set_ident()
1435 if _HAVE_THREAD_NATIVE_ID:
1436 self._set_native_id()
1437 with _active_limbo_lock:
1438 _active[self._ident] = self
1439
1440 def _stop(self):
1441 pass

Callers

nothing calls this directly

Calls 5

_newnameFunction · 0.85
_set_identMethod · 0.80
_set_native_idMethod · 0.80
__init__Method · 0.45
setMethod · 0.45

Tested by

no test coverage detected