method: path.local.read

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

origin: FSPathBase

where:

exceptions that might appear during execution:

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

traceback path.local.read.0

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.1

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.2

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.3

called in /home/johnny/projects/merlinux/py/dist/py/documentation/conftest.py

traceback path.local.read.4

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.5

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

traceback path.local.read.6

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.7

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.8

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.9

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.10

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.11

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.12

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.13

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.14

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

traceback path.local.read.15

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

traceback path.local.read.16

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.17

called in /home/johnny/projects/merlinux/py/dist/py/code/code.py

traceback path.local.read.18

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

traceback path.local.read.19

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

traceback path.local.read.20