method: path.svnurl.copy

*Not documented*
    def copy(self, target, msg='copied by py lib invocation'):

origin: path.svnurl

where:

function source:

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

call sites:

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

traceback path.svnurl.copy.0

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

traceback path.svnurl.copy.1