call site 10 for code.Source.getstatement
code/testing/test_source.py - line 198
192
193
194
195
196
197
198
199
200
   def test_compile_and_getsource(self):
       co = self.source.compile()
       exec co
       f(7)
       excinfo = py.test.raises(AssertionError, "f(6)")
       frame = excinfo.traceback[-1].frame 
->     stmt = frame.code.fullsource.getstatement(frame.lineno)
       #print "block", str(block)
       assert str(stmt).strip().startswith('assert')