()
| 1125 | # bpo-37788: Test that a thread which is not joined explicitly |
| 1126 | # does not leak. Test written for reference leak checks. |
| 1127 | def noop(): pass |
| 1128 | with threading_helper.wait_threads_exit(): |
| 1129 | threading.Thread(target=noop).start() |
| 1130 | # Thread.join() is not called |
no outgoing calls
no test coverage detected