Lines Matching refs:threading
23 import threading
25 threading = None
310 @unittest.skipUnless(threading, "Threading required for this test.")
338 thread = threading.Thread(target=run_server)
657 @unittest.skipUnless(threading, 'Threading required for this test.')
667 self.evt = threading.Event()
670 threading.Thread(target=self.threadFunc, args=serv_args).start()
1088 if threading:
1091 # Without threading, http_server() and http_multi_server() will not
1116 @unittest.skipUnless(threading, 'Threading required for this test.')
1119 self.evt = threading.Event()
1122 threading.Thread(target=http_server, args=serv_args).start()