call site 13 for code.ExceptionInfo.__init__
code/testing/test_excinfo.py - line 8
4
5
6
7
8
9
   def test_excinfo_simple():
       try:
           raise ValueError
       except ValueError:
->         info = py.code.ExceptionInfo()
       assert info.type == ValueError