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