method: path.local.load

 return object unpickled from self.read() 
    def load(self):

origin: FSPathBase

where:

function source:

def load(self):
    """ return object unpickled from self.read() """
    f = self.open('rb')
    try:
        from cPickle import load
        return self._callex(load, f)
    finally:
        f.close()

call sites:

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

traceback path.local.load.0