method: path.svnwc.relto

 return a string which is the relative part of the path
        to the given 'relpath'. 
        
    def relto(self, relpath):

origin: PathBase

where:

exceptions that might appear during execution:

function source:

def relto(self, relpath):
    """ return a string which is the relative part of the path
        to the given 'relpath'. 
        """
    if not isinstance(relpath, (str, PathBase)): 
        raise TypeError("%r: not a string or path object" %(relpath,))
    strrelpath = str(relpath)
    if strrelpath and strrelpath[-1] != self.sep:
        strrelpath += self.sep
    #assert strrelpath[-1] == self.sep
    #assert strrelpath[-2] != self.sep
    strself = str(self)
    if strself.startswith(strrelpath):
        return strself[len(strrelpath):]
    return ""

call sites:

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

traceback path.svnwc.relto.0

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

traceback path.svnwc.relto.1

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

traceback path.svnwc.relto.2

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

traceback path.svnwc.relto.3

called in None</home/johnny/projects/merlinux/py/dist/py/test/raises.py:20>

traceback path.svnwc.relto.4

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

traceback path.svnwc.relto.5

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

traceback path.svnwc.relto.6

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

traceback path.svnwc.relto.7

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

traceback path.svnwc.relto.8

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

traceback path.svnwc.relto.9

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

traceback path.svnwc.relto.10

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

traceback path.svnwc.relto.11