call site 1 for path.local.realpath
path/local/testing/test_posix.py - line 87
81
82
83
84
85
86
87
88
   def test_realpath_file(self):
       tmpdir = self.tmpdir 
       linkpath = tmpdir.join('test')
       filepath = tmpdir.join('file')
       filepath.write("")
       linkpath.mksymlinkto(filepath)
->     realpath = linkpath.realpath()
       assert realpath.basename == 'file'