call site 4 for _thread.WorkerPool.__init__
thread/testing/test_pool.py - line 50
49
50
51
52
53
54
55
   def test_get_excinfo():
->     pool = WorkerPool()
       def f(): 
           raise ValueError("42") 
       reply = pool.dispatch(f) 
       excinfo = py.test.raises(ValueError, "reply.get(1.0)") 
       py.test.raises(EOFError, "reply.get(1.0)")