call site 0 for path.local.remove
path/local/testing/test_posix.py - line 78
73
74
75
76
77
78
79
   def test_symlink_remove(self):
       tmpdir = self.tmpdir.realpath() 
       linkpath = tmpdir.join('test')
       linkpath.mksymlinkto(linkpath) # point to itself
       assert linkpath.check(link=1)
->     linkpath.remove()
       assert not linkpath.check()