Lines Matching refs:pickle
1 :mod:`pickletools` --- Tools for pickle developers
5 :synopsis: Contains extensive comments about the pickle protocols and pickle-machine
16 :mod:`pickle` module, some lengthy comments about the implementation, and a few
18 useful for Python core developers who are working on the :mod:`pickle` and
19 :mod:`cPickle` implementations; ordinary users of the :mod:`pickle` module
23 .. function:: dis(pickle, out=None, memo=None, indentlevel=4)
25 Outputs a symbolic disassembly of the pickle to the file-like object *out*,
26 defaulting to ``sys.stdout``. *pickle* can be a string or a file-like object.
27 *memo* can be a Python dictionary that will be used as the pickle's memo; it can
33 .. function:: genops(pickle)
35 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a
39 *pickle* can be a string or a file-like object.
43 Returns a new equivalent pickle string after eliminating unused ``PUT``
44 opcodes. The optimized pickle is shorter, takes less transmission time,