threading.settrace(func)
Set a trace function for all threads started from the threading
module. The func will be passed to sys.settrace()
for each thread, before its run()
method is called.
threading.settrace(func)
Set a trace function for all threads started from the threading
module. The func will be passed to sys.settrace()
for each thread, before its run()
method is called.
Please login to continue.