return a new Path (with the same revision) which is composed
of the self Path followed by 'args' path components.
def join(self, *args):
origin: SvnPathBase
where:
function source:
def join(self, *args):
""" return a new Path (with the same revision) which is composed
of the self Path followed by 'args' path components.
"""
if not args:
return self
args = tuple([arg.strip(self.sep) for arg in args])
parts = (self.strpath, ) + args
newpath = self.__class__(self.sep.join(parts), self.rev)
return newpath
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/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
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/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py
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/common.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/svncommon.py
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py