Home | History | Annotate | Download | only in test

Lines Matching refs:threading

25     import threading
1461 @unittest.skipUnless(_have_threads, "Needs threading module")
1850 class ThreadedEchoServer(threading.Thread):
1852 class ConnectionHandler(threading.Thread):
1865 threading.Thread.__init__(self)
2021 threading.Thread.__init__(self)
2025 self.start(threading.Event())
2035 threading.Thread.start(self)
2062 class AsyncoreEchoServer(threading.Thread):
2139 threading.Thread.__init__(self)
2146 self.start(threading.Event())
2162 threading.Thread.start(self)
2499 listener_ready = threading.Event()
2500 listener_gone = threading.Event()
2529 t = threading.Thread(target=listener)
2978 started = threading.Event()
2994 t = threading.Thread(target=serve)
3035 evt = threading.Event()
3046 t = threading.Thread(target=serve)