Lines Matching defs:threading
46 import threading
1570 # The following are two functions used to test threading in the next class
1660 # Take care executing this test from IDLE, there's an issue in threading
1667 self.skipTest("compiled without threading")
1668 # Test the "threading isolation" of a Context. Also test changing
1678 self.synchro = threading.Event()
1679 self.finish1 = threading.Event()
1680 self.finish2 = threading.Event()
1682 th1 = threading.Thread(target=thfunc1, args=(self,))
1683 th2 = threading.Thread(target=thfunc2, args=(self,))