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()
called in /home/johnny/projects/merlinux/py/dist/py/path/testing/fscommon.py