summaryrefslogtreecommitdiff
path: root/Doc/library/shelve.rst
diff options
context:
space:
mode:
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 9d7d5045e2..048f80afa0 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -103,8 +103,8 @@ Restrictions
.. class:: Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8')
- A subclass of :class:`collections.MutableMapping` which stores pickled values
- in the *dict* object.
+ A subclass of :class:`collections.abc.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