call site 0 for _thread.WorkerPool.dispatch
thread/testing/test_pool.py - line 53
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)")