call site 7 for code.ExceptionInfo.__init__
code/testing/test_excinfo.py - line 182
178
179
180
181
182
183
184
185
   def test_tbentry_reinterpret(): 
       try: 
           hello("hello") 
       except TypeError: 
->         excinfo = py.code.ExceptionInfo() 
       tbentry = excinfo.traceback[-1]
       msg = tbentry.reinterpret() 
       assert msg.startswith("TypeError: ('hello' + 5)")