method: path.local.realpath

 return a new path which contains no symbolic links.
    def realpath(self):

origin: path.local

where:

function source:

def realpath(self):
    """ return a new path which contains no symbolic links."""
    return self.__class__(os.path.realpath(self.strpath))

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/path/local/testing/test_posix.py

traceback path.local.realpath.0

called in /home/johnny/projects/merlinux/py/dist/py/path/local/testing/test_local.py

traceback path.local.realpath.1

called in /home/johnny/projects/merlinux/py/dist/py/path/local/testing/test_posix.py

traceback path.local.realpath.2