call site 18 for code.Source.getstatement
code/testing/test_source.py - line 141
136
137
138
139
140
141
142
143
   def test_getstatement(self):
       #print str(self.source)
       ass = str(self.source[1:])
       for i in range(1, 4):
           #print "trying start in line %r" % self.source[i]
->         s = self.source.getstatement(i)
           #x = s.deindent()
           assert str(s) == ass