Lines Matching refs:threading
9 threading = support.import_module('threading')
33 t = threading.Thread(target=target, args=(local, weaklist))
53 # of a threading.local derived class, the per-thread dictionary
67 with support.start_threads(threading.Thread(target=f, args=(i,))
77 e1 = threading.Event()
78 e2 = threading.Event()
97 t = threading.Thread(target=f)
124 e1 = threading.Event()
125 e2 = threading.Event()
145 t1 = threading.Thread(target=f1)
148 t2 = threading.Thread(target=f2)