Lines Matching refs:threading
32 import threading
34 threading = None
75 # and unmaintained) linuxthreads threading library. There's an issue
2394 if threading is not None:
2395 class SendfileTestServer(asyncore.dispatcher, threading.Thread):
2420 threading.Thread.__init__(self)
2428 self._active_lock = threading.Lock()
2438 self.__flag = threading.Event()
2439 threading.Thread.start(self)
2479 @unittest.skipUnless(threading is not None, "test needs threading module")