summaryrefslogtreecommitdiffstats
path: root/Doc/library/copy.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-08 09:04:57 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-08 09:04:57 (GMT)
commit78b18d4b4c82c90c3c45f0ea77c78bbfb3358218 (patch)
treeac04d189e26423a6c71cceace73fcaf199cf527c /Doc/library/copy.rst
parent44dbd07a5187983cf531fa73c6dd145bfd325346 (diff)
downloadcpython-78b18d4b4c82c90c3c45f0ea77c78bbfb3358218.zip
cpython-78b18d4b4c82c90c3c45f0ea77c78bbfb3358218.tar.gz
cpython-78b18d4b4c82c90c3c45f0ea77c78bbfb3358218.tar.bz2
#11481: update copyreg docs and add example.
Diffstat (limited to 'Doc/library/copy.rst')
-rw-r--r--Doc/library/copy.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst
index 0c68bd9..1db5c2d 100644
--- a/Doc/library/copy.rst
+++ b/Doc/library/copy.rst
@@ -67,8 +67,8 @@ of lists by assigning a slice of the entire list, for example,
Classes can use the same interfaces to control copying that they use to control
pickling. See the description of module :mod:`pickle` for information on these
-methods. The :mod:`copy` module does not use the :mod:`copyreg` registration
-module.
+methods. In fact, :mod:`copy` module uses the registered pickle functions from
+:mod:`copyreg` module.
.. index::
single: __copy__() (copy protocol)