call site 1 for _thread.WorkerPool.__init__
thread/testing/test_pool.py - line 34
33
34
35
36
37
38
39
   def test_get():
->     pool = WorkerPool()
       def f(): 
           return 42
       reply = pool.dispatch(f) 
       result = reply.get() 
       assert result == 42