| 334 | if thread_ident not in threading._active: |
| 335 | |
| 336 | class _DummyThread(threading._DummyThread): |
| 337 | def _set_ident(self): |
| 338 | # Note: Hack to set the thread ident that we want. |
| 339 | self._ident = thread_ident |
| 340 | |
| 341 | t = _DummyThread() |
| 342 | # Reset to the base class (don't expose our own version of the class). |
no outgoing calls
no test coverage detected