Home | History | Annotate | Download | only in test

Lines Matching refs:threading

12     import threading
15 threading = None
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target)