call site 3 for path.local.remove
path/local/testing/test_local.py - line 39
36
37
38
39
40
   def test_remove_removes_readonly_file(self):
       readonly_file = self.tmpdir.join('readonly').ensure()
       readonly_file.chmod(0)
->     readonly_file.remove()
       assert not readonly_file.check(exists=1)