method: path.svnurl.open

*Not documented*
    def open(self, mode='r'):

origin: path.svnurl

where:

function source:

def open(self, mode='r'):
    assert 'w' not in mode and 'a' not in mode, "XXX not implemented for svn cmdline"
    assert self.check(file=1) # svn cat returns an empty file otherwise
    def popen(cmd):
        return os.popen(cmd)
    if self.rev is None:
        return popen(svncommon.fixlocale() +
                        'svn cat "%s"' % (svncommon.escape(self.strpath), ))
    else:
        return popen(svncommon.fixlocale() +
                        'svn cat -r %s "%s"' % (
                         self.rev, svncommon.escape(self.strpath)))

call sites:

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

traceback path.svnurl.open.0

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

traceback path.svnurl.open.1

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

traceback path.svnurl.open.2

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

traceback path.svnurl.open.3

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

traceback path.svnurl.open.4

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

traceback path.svnurl.open.5

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

traceback path.svnurl.open.6

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

traceback path.svnurl.open.7

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

traceback path.svnurl.open.8

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

traceback path.svnurl.open.9

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

traceback path.svnurl.open.10

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

traceback path.svnurl.open.11

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

traceback path.svnurl.open.12

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

traceback path.svnurl.open.13

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

traceback path.svnurl.open.14

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

traceback path.svnurl.open.15