Searched defs:Pickler (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
H A Dshelve.py62 from cPickle import Pickler, Unpickler namespace
64 from pickle import Pickler, Unpickler namespace
131 p = Pickler(f, self._protocol)
H A Dpickle.py9 Pickler
37 __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",
171 class Pickler: class in inherits:
230 # The Pickler memo is a dictionary mapping object ids to 2-tuples
234 # Pickler memo so that transient objects are kept alive during
592 # found a Pickler subclass in Zope3 that calls it, so it's not harmless
1376 Pickler(file, protocol).dump(obj)
1380 Pickler(file, protocol).dump(obj)
/external/python/cpython3/Lib/
H A Dshelve.py59 from pickle import Pickler, Unpickler namespace
123 p = Pickler(f, self._protocol)
/external/python/cpython2/Lib/multiprocessing/
H A Dforking.py59 from pickle import Pickler namespace
60 class ForkingPickler(Pickler):
61 dispatch = Pickler.dispatch.copy()

Completed in 204 milliseconds