Lines Matching +full:preserve +full:- +full:comments
1 :mod:`pickletools` --- Tools for pickle developers
5 :synopsis: Contains extensive comments about the pickle protocols and
6 pickle-machine opcodes, as well as some useful functions.
10 --------------
14 :mod:`pickle` module, some lengthy comments about the implementation, and a
21 ------------------
25 When invoked from the command line, ``python -m pickletools`` will
28 details of pickle format, you may want to use ``-m pickle`` instead.
30 untrusted source, ``-m pickletools`` is a safer option because it does
35 .. code-block:: shell-session
37 $ python -m pickle x.pickle
40 $ python -m pickletools x.pickle
54 .. cmdoption:: -a, --annotate
58 .. cmdoption:: -o, --output=<file>
62 .. cmdoption:: -l, --indentlevel=<num>
66 .. cmdoption:: -m, --memo
68 When multiple objects are disassembled, preserve memo between
71 .. cmdoption:: -p, --preamble=<preamble>
79 ----------------------
84 Outputs a symbolic disassembly of the pickle to the file-like
86 string or a file-like object. *memo* can be a Python dictionary
104 *pickle* can be a string or a file-like object.