call site 0 for code.Source.strip
code/testing/test_source.py - line 72
69
70
71
72
73
   def test_source_strip_multiline(): 
       source = Source()
       source.lines = ["", " hello", "  "]
->     source2 = source.strip() 
       assert source2.lines == [" hello"]