()
| 1170 | # bpo-37788: Test that a thread which is not joined explicitly |
| 1171 | # does not leak. Test written for reference leak checks. |
| 1172 | def noop(): pass |
| 1173 | with threading_helper.wait_threads_exit(): |
| 1174 | threading.Thread(target=noop).start() |
| 1175 | # Thread.join() is not called |
no outgoing calls
no test coverage detected