method: path.svnwc.__cmp__

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

origin: PathBase

where:

exceptions that might appear during execution:

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/magic/autopath.py

traceback path.svnwc.__cmp__.0

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

traceback path.svnwc.__cmp__.1

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

traceback path.svnwc.__cmp__.2

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

traceback path.svnwc.__cmp__.3

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

traceback path.svnwc.__cmp__.4

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

traceback path.svnwc.__cmp__.5

called in /home/johnny/projects/merlinux/py/dist/py/magic/autopath.py

traceback path.svnwc.__cmp__.6

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

traceback path.svnwc.__cmp__.7