call site 0 for path.local.mklinkto
path/local/testing/test_posix.py - line 20
14
15
16
17
18
19
20
21
   def test_hardlink(self):
       tmpdir = self.tmpdir 
       linkpath = tmpdir.join('test')
       filepath = tmpdir.join('file')
       filepath.write("Hello")
       nlink = filepath.stat().st_nlink 
->     linkpath.mklinkto(filepath)
       assert filepath.stat().st_nlink == nlink + 1