Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`pickletools` --- Tools for pickle developers. |
| 3 | =================================================== |
| 4 | |
| 5 | .. module:: pickletools |
| 6 | :synopsis: Contains extensive comments about the pickle protocols and pickle-machine |
| 7 | opcodes, as well as some useful functions. |
| 8 | |
| 9 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 | This module contains various constants relating to the intimate details of the |
| 11 | :mod:`pickle` module, some lengthy comments about the implementation, and a few |
| 12 | useful functions for analyzing pickled data. The contents of this module are |
| 13 | useful for Python core developers who are working on the :mod:`pickle` and |
| 14 | :mod:`cPickle` implementations; ordinary users of the :mod:`pickle` module |
| 15 | probably won't find the :mod:`pickletools` module relevant. |
| 16 | |
| 17 | |
| 18 | .. function:: dis(pickle[, out=None, memo=None, indentlevel=4]) |
| 19 | |
| 20 | Outputs a symbolic disassembly of the pickle to the file-like object *out*, |
| 21 | defaulting to ``sys.stdout``. *pickle* can be a string or a file-like object. |
| 22 | *memo* can be a Python dictionary that will be used as the pickle's memo; it can |
| 23 | be used to perform disassemblies across multiple pickles created by the same |
| 24 | pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are |
| 25 | indented by *indentlevel* spaces. |
| 26 | |
| 27 | |
| 28 | .. function:: genops(pickle) |
| 29 | |
Georg Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 30 | Provides an :term:`iterator` over all of the opcodes in a pickle, returning a |
| 31 | sequence of ``(opcode, arg, pos)`` triples. *opcode* is an instance of an |
| 32 | :class:`OpcodeInfo` class; *arg* is the decoded value, as a Python object, of |
| 33 | the opcode's argument; *pos* is the position at which this opcode is located. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 34 | *pickle* can be a string or a file-like object. |
| 35 | |
Christian Heimes | 3feef61 | 2008-02-11 06:19:17 +0000 | [diff] [blame] | 36 | .. function:: optimize(picklestring) |
| 37 | |
| 38 | Returns a new equivalent pickle string after eliminating unused ``PUT`` |
| 39 | opcodes. The optimized pickle is shorter, takes less transmission time, |
| 40 | requires less storage space, and unpickles more efficiently. |
| 41 | |