Lines Matching refs:threading
38 import threading
40 threading = None
1187 # The following are two functions used to test threading in the next class
1220 import threading
1222 threading = None
1224 # Take care executing this test from IDLE, there's an issue in threading
1228 #Test the "threading isolation" of a Context.
1230 self.synchro = threading.Event()
1231 self.finish1 = threading.Event()
1232 self.finish2 = threading.Event()
1234 th1 = threading.Thread(target=thfunc1, args=(self,))
1235 th2 = threading.Thread(target=thfunc2, args=(self,))
1244 if threading is None: