()
| 232 | # The ident still must work for the main thread and dummy threads. |
| 233 | self.assertIsNotNone(threading.current_thread().ident) |
| 234 | def f(): |
| 235 | ident.append(threading.current_thread().ident) |
| 236 | done.set() |
| 237 | done = threading.Event() |
| 238 | ident = [] |
| 239 | with threading_helper.wait_threads_exit(): |
nothing calls this directly
no test coverage detected