diff options
author | Georg Brandl <georg@python.org> | 2008-05-26 17:47:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-26 17:47:11 (GMT) |
commit | c772372d1d376bae78fa84d754d4503684a7f40d (patch) | |
tree | 534622029de3bbc220d751546f43eb59a934d9fd /Doc/library/shelve.rst | |
parent | 79e4803b29b935c6fa008aef0c8c7fa4fd94a490 (diff) | |
download | cpython-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.rst | 4 |
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 |