Closed
Description
The check_dump_traceback_threads
function checks the result when faulthandler dumps the traceback involving more than one thread.
With the GIL, the waiting thread is always (or almost always) in the self.stop.wait()
call, but in the free-threaded build the waiting thread might still be in the self.running.set()
call.
cpython/Lib/test/test_faulthandler.py
Lines 560 to 562 in ac45766