summaryrefslogtreecommitdiffstats
path: root/Doc/library/shelve.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-26 17:47:11 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-26 17:47:11 (GMT)
commitc772372d1d376bae78fa84d754d4503684a7f40d (patch)
tree534622029de3bbc220d751546f43eb59a934d9fd /Doc/library/shelve.rst
parent79e4803b29b935c6fa008aef0c8c7fa4fd94a490 (diff)
downloadcpython-c772372d1d376bae78fa84d754d4503684a7f40d.zip
cpython-c772372d1d376bae78fa84d754d4503684a7f40d.tar.gz
cpython-c772372d1d376bae78fa84d754d4503684a7f40d.tar.bz2
Remove remaining references to UserDict module.
Diffstat (limited to 'Doc/library/shelve.rst')
-rw-r--r--Doc/library/shelve.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index ee839e8..2dee026 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -80,8 +80,8 @@ Restrictions
.. class:: Shelf(dict[, protocol=None[, writeback=False]])
- A subclass of :class:`UserDict.DictMixin` which stores pickled values in the
- *dict* object.
+ A subclass of :class:`collections.MutableMapping` which stores pickled values
+ in the *dict* object.
By default, version 0 pickles are used to serialize values. The version of the
pickle protocol can be specified with the *protocol* parameter. See the