Home
last modified time | relevance | path

Searched refs:Pickler (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_pickle.py55 p = pickle.Pickler(f, proto)
70 class PersPickler(pickle.Pickler):
91 pickler_class = pickle.Pickler
Dtest_cpickle.py90 p = cPickle.Pickler(f, proto)
118 p = cPickle.Pickler(proto)
147 p = cPickle.Pickler(f, proto)
199 pickler_class = cPickle.Pickler
Dpickletester.py1693 self.module.Pickler(f, -1)
1694 self.module.Pickler(f, protocol=-1)
/external/python/cpython2/Lib/
Dshelve.py62 from cPickle import Pickler, Unpickler
64 from pickle import Pickler, Unpickler
131 p = Pickler(f, self._protocol)
Dpickle.py171 class Pickler: class
1376 Pickler(file, protocol).dump(obj)
1380 Pickler(file, protocol).dump(obj)
/external/python/cpython2/Lib/multiprocessing/
Dforking.py59 from pickle import Pickler
60 class ForkingPickler(Pickler):
61 dispatch = Pickler.dispatch.copy()
/external/python/cpython2/Doc/library/
Dpickle.rst41 of the :func:`Pickler` and :func:`Unpickler` classes, because in :mod:`cPickle`
170 equivalent to ``Pickler(file, protocol).dump(obj)``.
240 The :mod:`pickle` module also exports two callables [#]_, :class:`Pickler` and
244 .. class:: Pickler(file[, protocol])
259 :class:`Pickler` objects define one (or two) public methods:
289 :class:`Pickler` instance. These must then be matched to the same number of
301 binary mode or not, so it does not need a flag as in the :class:`Pickler`
477 When the :class:`Pickler` encounters an object of a type it knows nothing
573 :attr:`~Pickler.persistent_id` attribute of the pickler object and the
577 custom :func:`~Pickler.persistent_id` method that takes an object as an
[all …]
/external/python/cpython2/Demo/pdist/
Dserver.py91 wp = pickle.Pickler(wf)
Dclient.py82 wp = pickle.Pickler(self._wf)
/external/python/cpython2/Misc/
DHISTORY3789 - The cPickle Pickler garbage collection support was fixed to traverse
4009 - cPickle Pickler and Unpickler objects now participate in garbage
5588 - The pickle.Pickler class grew a clear_memo() method to mimic that
5589 provided by cPickle.Pickler.
11027 Fulton. Also get rid of the undocumented obsolete Pickler dump_special
DNEWS2303 - Issue #16231: Fixed pickle.Pickler to only fallback to its default pickling
2304 behaviour when Pickler.persistent_id returns None, but not for any other