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