method: path.svnurl.join

 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

call sites:

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

traceback path.svnurl.join.0

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

traceback path.svnurl.join.1

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

traceback path.svnurl.join.2

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

traceback path.svnurl.join.3

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

traceback path.svnurl.join.4

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py

traceback path.svnurl.join.5

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

traceback path.svnurl.join.6

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py

traceback path.svnurl.join.7

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

traceback path.svnurl.join.8

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

traceback path.svnurl.join.9

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

traceback path.svnurl.join.10

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

traceback path.svnurl.join.11

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

traceback path.svnurl.join.12

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py

traceback path.svnurl.join.13

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

traceback path.svnurl.join.14

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py

traceback path.svnurl.join.15

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/urlcommand.py

traceback path.svnurl.join.16

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

traceback path.svnurl.join.17

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

traceback path.svnurl.join.18

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/svncommon.py

traceback path.svnurl.join.19

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

traceback path.svnurl.join.20