method: path.svnurl.move

*Not documented*
    def move(self, target):

origin: FSPathBase

where:

function source:

def move(self, target):
    if target.relto(self):
        raise py.error.EINVAL(target, "cannot move path into a subdirectory of itself")
    try:
        self.rename(target)
    except py.error.EXDEV:  # invalid cross-device link
        self.copy(target)
        self.remove()

call sites:

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

traceback path.svnurl.move.0

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

traceback path.svnurl.move.1