[Python-checkins] r71088 - python/branches/py3k/Doc/library/pickletools.rst

alexandre.vassalotti python-checkins at python.org
Fri Apr 3 08:07:30 CEST 2009


Author: alexandre.vassalotti
Date: Fri Apr  3 08:07:29 2009
New Revision: 71088

Log:
Remove old reference to cPickle.


Modified:
   python/branches/py3k/Doc/library/pickletools.rst

Modified: python/branches/py3k/Doc/library/pickletools.rst
==============================================================================
--- python/branches/py3k/Doc/library/pickletools.rst	(original)
+++ python/branches/py3k/Doc/library/pickletools.rst	Fri Apr  3 08:07:29 2009
@@ -3,16 +3,14 @@
 ===================================================
 
 .. module:: pickletools
-   :synopsis: Contains extensive comments about the pickle protocols and pickle-machine
-              opcodes, as well as some useful functions.
-
+   :synopsis: Contains extensive comments about the pickle protocols and pickle-machine opcodes, as well as some useful functions.
 
 This module contains various constants relating to the intimate details of the
-:mod:`pickle` module, some lengthy comments about the implementation, and a few
-useful functions for analyzing pickled data.  The contents of this module are
-useful for Python core developers who are working on the :mod:`pickle` and
-:mod:`cPickle` implementations; ordinary users of the :mod:`pickle` module
-probably won't find the :mod:`pickletools` module relevant.
+:mod:`pickle` module, some lengthy comments about the implementation, and a
+few useful functions for analyzing pickled data.  The contents of this module
+are useful for Python core developers who are working on the :mod:`pickle`;
+ordinary users of the :mod:`pickle` module probably won't find the
+:mod:`pickletools` module relevant.
 
 
 .. function:: dis(pickle[, out=None, memo=None, indentlevel=4])
@@ -24,7 +22,6 @@
    pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are
    indented by *indentlevel* spaces.
 
-
 .. function:: genops(pickle)
 
    Provides an :term:`iterator` over all of the opcodes in a pickle, returning a


More information about the Python-checkins mailing list