*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()
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/fscommon.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/fscommon.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py
called in /home/johnny/projects/merlinux/py/dist/py/rest/convert.py