Lines Matching defs:worker
31 # #12316 and #11870), and fork() from a worker thread is known to trigger
318 print(" started worker thread")
326 # Now raise an exception in the worker thread.
328 print(" waiting for worker thread to get started")
332 print(" verifying worker hasn't exited")
335 print(" attempting to raise asynch exception in worker")
339 print(" waiting for worker to say it caught the exception")
343 print(" all OK -- joining worker")
1048 # Like the test above, but fork() was called from a worker thread
1055 def worker():
1069 w = threading.Thread(target=worker)
1689 def worker(started, cont, interrupted):
1700 t = threading.Thread(target=worker,args=(started, cont, interrupted))