Commit ae29d4a5 authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

Remove old reference to cPickle.

parent c04b6852
...@@ -3,16 +3,14 @@ ...@@ -3,16 +3,14 @@
=================================================== ===================================================
.. module:: pickletools .. module:: pickletools
:synopsis: Contains extensive comments about the pickle protocols and pickle-machine :synopsis: Contains extensive comments about the pickle protocols and pickle-machine opcodes, as well as some useful functions.
opcodes, as well as some useful functions.
This module contains various constants relating to the intimate details of the This module contains various constants relating to the intimate details of the
:mod:`pickle` module, some lengthy comments about the implementation, and a few :mod:`pickle` module, some lengthy comments about the implementation, and a
useful functions for analyzing pickled data. The contents of this module are few useful functions for analyzing pickled data. The contents of this module
useful for Python core developers who are working on the :mod:`pickle` and are useful for Python core developers who are working on the :mod:`pickle`;
:mod:`cPickle` implementations; ordinary users of the :mod:`pickle` module ordinary users of the :mod:`pickle` module probably won't find the
probably won't find the :mod:`pickletools` module relevant. :mod:`pickletools` module relevant.
.. function:: dis(pickle[, out=None, memo=None, indentlevel=4]) .. function:: dis(pickle[, out=None, memo=None, indentlevel=4])
...@@ -24,7 +22,6 @@ probably won't find the :mod:`pickletools` module relevant. ...@@ -24,7 +22,6 @@ probably won't find the :mod:`pickletools` module relevant.
pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are
indented by *indentlevel* spaces. indented by *indentlevel* spaces.
.. function:: genops(pickle) .. function:: genops(pickle)
Provides an :term:`iterator` over all of the opcodes in a pickle, returning a Provides an :term:`iterator` over all of the opcodes in a pickle, returning a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment