method: path.svnurl.rename

*Not documented*
    def rename(self, target, msg="renamed by py lib invocation"):

origin: path.svnurl

where:

function source:

def rename(self, target, msg="renamed by py lib invocation"):
    if getattr(self, 'rev', None) is not None:
        raise py.error.EINVAL(self, "revisions are immutable")
    py.process.cmdexec('svn move -m "%s" --force "%s" "%s"' % (
                        msg, svncommon.escape(self),
                        svncommon.escape(target)))
    self._lsnorevcache.delentry(self.dirpath().strpath)
    self._lsnorevcache.delentry(self.strpath)

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/path/common.py

traceback path.svnurl.rename.0

called in /home/johnny/projects/merlinux/py/dist/py/path/common.py

traceback path.svnurl.rename.1