예제 #1
0
 def setup(self):
     self.lock = threading.Lock()
     self.exec_count = 0
     self.te = ThreadPool(size=2)
예제 #2
0
 def test1():
     with local_base_config(conf1):
         pool1 = ThreadPool(5)
         list(pool1.imap(check1, list(range(200))))
예제 #3
0
 def test2():
     with local_base_config(conf2):
         pool2 = ThreadPool(5)
         list(pool2.imap(check2, list(range(200))))
예제 #4
0
 def mk_pool(self):
     return ThreadPool()