Home | History | Annotate | Download | only in test

Lines Matching refs:threading

17     import threading
19 threading = None
417 @unittest.skipUnless(threading, 'Threading required for this test.')
427 self.evt = threading.Event()
430 threading.Thread(target=self.threadFunc, args=serv_args).start()
751 if threading:
754 # Without threading, http_server() and http_multi_server() will not
778 @unittest.skipUnless(threading, 'Threading required for this test.')
781 self.evt = threading.Event()
784 threading.Thread(target=http_server, args=serv_args).start()