blob: ebb30abd4313130cd618f7b0de3f347ca7c29166 [file] [log] [blame]
Georg Brandl42a82642009-06-08 07:57:35 +00001:mod:`pickletools` --- Tools for pickle developers
2==================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00003
4.. module:: pickletools
5 :synopsis: Contains extensive comments about the pickle protocols and pickle-machine
6 opcodes, as well as some useful functions.
7
8
9.. versionadded:: 2.3
10
Éric Araujo29a0b572011-08-19 02:14:03 +020011**Source code:** :source:`Lib/pickletools.py`
12
13--------------
14
Georg Brandl8ec7f652007-08-15 14:28:01 +000015This module contains various constants relating to the intimate details of the
16:mod:`pickle` module, some lengthy comments about the implementation, and a few
17useful functions for analyzing pickled data. The contents of this module are
18useful for Python core developers who are working on the :mod:`pickle` and
19:mod:`cPickle` implementations; ordinary users of the :mod:`pickle` module
20probably won't find the :mod:`pickletools` module relevant.
21
22
Hynek Schlawacke58ce012012-05-22 10:27:40 +020023.. function:: dis(pickle, out=None, memo=None, indentlevel=4)
Georg Brandl8ec7f652007-08-15 14:28:01 +000024
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
28 be used to perform disassemblies across multiple pickles created by the same
29 pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are
30 indented by *indentlevel* spaces.
31
32
33.. function:: genops(pickle)
34
Georg Brandle7a09902007-10-21 12:10:28 +000035 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a
36 sequence of ``(opcode, arg, pos)`` triples. *opcode* is an instance of an
37 :class:`OpcodeInfo` class; *arg* is the decoded value, as a Python object, of
38 the opcode's argument; *pos* is the position at which this opcode is located.
Georg Brandl8ec7f652007-08-15 14:28:01 +000039 *pickle* can be a string or a file-like object.
40
Raymond Hettingerda614dc2008-02-10 20:35:16 +000041.. function:: optimize(picklestring)
42
43 Returns a new equivalent pickle string after eliminating unused ``PUT``
44 opcodes. The optimized pickle is shorter, takes less transmission time,
45 requires less storage space, and unpickles more efficiently.
46
47 .. versionadded:: 2.6