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