()
| 247 | _thread.start_new_thread(dump_threads_and_kill_on_timeout, ()) |
| 248 | |
| 249 | def method(): |
| 250 | while True: |
| 251 | trace_func = sys.gettrace() |
| 252 | if trace_func: |
| 253 | threading.current_thread().trace_func = trace_func |
| 254 | break |
| 255 | time.sleep(0.01) |
| 256 | |
| 257 | def dummy_thread_method(): |
| 258 | threads.append(threading.current_thread()) |
no outgoing calls
no test coverage detected