method: path.svnurl.__cmp__

*Not documented*
    def __cmp__(self, other):

origin: PathBase

where:

function source:

def __cmp__(self, other):
    try:
        return cmp(self.strpath, other.strpath)
    except AttributeError:
        return cmp(str(self), str(other)) # self.path, other.path)

call sites:

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

traceback path.svnurl.__cmp__.0

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

traceback path.svnurl.__cmp__.1