call site 7 for path.local.mksymlinkto
path/local/testing/test_posix.py - line 36
31
32
33
34
35
36
37
38
   def test_symlink_isfile(self):
       tmpdir = self.tmpdir 
       linkpath = tmpdir.join('test')
       filepath = tmpdir.join('file')
       filepath.write("")
->     linkpath.mksymlinkto(filepath)
       assert linkpath.check(file=1)
       assert not linkpath.check(link=0, file=1)