call site 14 for code.Traceback.__getitem__
code/testing/test_excinfo.py - line 183
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)")