call site 19 for code.Source.__getslice__
code/testing/test_source.py - line 96
95
96
97
98
99
   def test_getrange(self):
->     x = self.source[0:2]
       assert x.isparseable()
       assert len(x.lines) == 2
       assert str(x) == "def f(x):\n    pass"