summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-12-13 21:04:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-12-13 21:04:16 (GMT)
commitb5314c6583b0500f09c54693ea37d7a7f89c2bdf (patch)
tree3873efd9c8946c4a87c2209a50fbff26e81975f4 /Doc
parent6d138f1f450aa1ef0f95b55c006244d7c65c3c48 (diff)
downloadcpython-b5314c6583b0500f09c54693ea37d7a7f89c2bdf.zip
cpython-b5314c6583b0500f09c54693ea37d7a7f89c2bdf.tar.gz
cpython-b5314c6583b0500f09c54693ea37d7a7f89c2bdf.tar.bz2
remove references to cPickle
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/copyreg.rst10
-rw-r--r--Doc/library/shelve.rst3
2 files changed, 4 insertions, 9 deletions
diff --git a/Doc/library/copyreg.rst b/Doc/library/copyreg.rst
index f6dbaaf..a2d316e 100644
--- a/Doc/library/copyreg.rst
+++ b/Doc/library/copyreg.rst
@@ -7,14 +7,12 @@
.. index::
module: pickle
- module: cPickle
module: copy
-The :mod:`copyreg` module provides support for the :mod:`pickle` and
-:mod:`cPickle` modules. The :mod:`copy` module is likely to use this in the
-future as well. It provides configuration information about object constructors
-which are not classes. Such constructors may be factory functions or class
-instances.
+The :mod:`copyreg` module provides support for the :mod:`pickle` module. The
+:mod:`copy` module is likely to use this in the future as well. It provides
+configuration information about object constructors which are not classes.
+Such constructors may be factory functions or class instances.
.. function:: constructor(object)
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index 7e4d7d9..659811a 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -175,6 +175,3 @@ object)::
Module :mod:`pickle`
Object serialization used by :mod:`shelve`.
- Module :mod:`cPickle`
- High-performance version of :mod:`pickle`.
-