Lines Matching refs:cPickle
26 :mod:`cPickle` module.
38 The :mod:`pickle` module has an optimized cousin called the :mod:`cPickle`
39 module. As its name implies, :mod:`cPickle` is written in C, so it can be up to
41 of the :func:`Pickler` and :func:`Unpickler` classes, because in :mod:`cPickle`
43 functionality, and can benefit from the improved performance of :mod:`cPickle`.
47 collectively describe the :mod:`pickle` and :mod:`cPickle` modules.
279 created by :mod:`cPickle`. In the :mod:`pickle` module, picklers have an
331 :class:`Unpickler` objects created with the :mod:`cPickle` module.
637 In the :mod:`cPickle` module, the unpickler's :attr:`~Unpickler.persistent_load`
646 .. BAW: Both pickle and cPickle support something called inst_persistent_id()
664 on whether you're using :mod:`pickle` or :mod:`cPickle`. [#]_
681 Things are a little cleaner with :mod:`cPickle`, but not by much. To control
815 :mod:`cPickle` --- A faster :mod:`pickle`
818 .. module:: cPickle
826 The :mod:`cPickle` module supports serialization and de-serialization of Python
831 First, :mod:`cPickle` can be up to 1000 times faster than :mod:`pickle` because
832 the former is implemented in C. Second, in the :mod:`cPickle` module the
836 benefit from the greatly improved performance of the :mod:`cPickle` module.
838 The pickle data stream produced by :mod:`pickle` and :mod:`cPickle` are
839 identical, so it is possible to use :mod:`pickle` and :mod:`cPickle`
842 There are additional minor differences in API between :mod:`cPickle` and
852 subclass to customize the behavior. However, in the :mod:`cPickle` module these
874 different for :mod:`pickle` and :mod:`cPickle`. The description given here
886 work in either :mod:`pickle` or :mod:`cPickle`.