method: path.local.mklinkto

 posix style hard link to another name. 
    def mklinkto(self, oldname):

origin: PosixMixin

where:

function source:

def mklinkto(self, oldname):
    """ posix style hard link to another name. """
    self._callex(os.link, str(oldname), str(self))

call sites:

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

traceback path.local.mklinkto.0