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

Function _make_thread_handle

Lib/_dummy_thread.py:114–118  ·  view source on GitHub ↗

Dummy implementation of _thread._make_thread_handle().

(ident)

Source from the content-addressed store, hash-verified

112
113
114def _make_thread_handle(ident):
115 """Dummy implementation of _thread._make_thread_handle()."""
116 handle = _ThreadHandle()
117 handle._ident = ident
118 return handle
119
120
121def _get_main_thread_ident():

Callers 2

__init__Method · 0.70
__init__Method · 0.70

Calls 1

_ThreadHandleClass · 0.70

Tested by

no test coverage detected