method: path.svnwc.read

 read and return a bytestring from reading the path. 
    def read(self, mode='rb'):

origin: FSPathBase

where:

function source:

def read(self, mode='rb'):
    """ read and return a bytestring from reading the path. """
    if py.std.sys.version_info < (2,3):
        for x in 'u', 'U':
            if x in mode:
                mode = mode.replace(x, '')
    f = self.open(mode)
    try:
        return f.read()
    finally:
        f.close()

call sites:

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

traceback path.svnwc.read.0

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

traceback path.svnwc.read.1

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

traceback path.svnwc.read.2

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

traceback path.svnwc.read.3

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

traceback path.svnwc.read.4

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

traceback path.svnwc.read.5

called in /home/johnny/projects/merlinux/py/dist/py/rest/testing/test_directive.py

traceback path.svnwc.read.6

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

traceback path.svnwc.read.7

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

traceback path.svnwc.read.8

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

traceback path.svnwc.read.9

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

traceback path.svnwc.read.10

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

traceback path.svnwc.read.11

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

traceback path.svnwc.read.12

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

traceback path.svnwc.read.13

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

traceback path.svnwc.read.14