method: path.svnurl.__repr__

*Not documented*
    def __repr__(self):

origin: path.svnurl

where:

function source:

def __repr__(self):
    if self.rev == -1:
        return 'svnurl(%r)' % self.strpath
    else:
        return 'svnurl(%r, %r)' % (self.strpath, self.rev)

call sites:

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

traceback path.svnurl.__repr__.0