method: path.local.dump

 pickle object into path location
    def dump(self, obj, bin=1):

origin: path.local

where:

function source:

def dump(self, obj, bin=1):
    """ pickle object into path location"""
    f = self.open('wb')
    try:
        self._callex(py.std.cPickle.dump, obj, f, bin)
    finally:
        f.close()

call sites:

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

traceback path.local.dump.0

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

traceback path.local.dump.1