diff options
author | Georg Brandl <georg@python.org> | 2008-02-21 20:33:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-21 20:33:38 (GMT) |
commit | 359b9e994b68de327950cc578da2e7b2b6f78480 (patch) | |
tree | 4c9651be6d955745af64de113c6a245b45eda979 /Doc | |
parent | ce584d420d012b7bc3998ad0fb055c464ad58e37 (diff) | |
download | cpython-359b9e994b68de327950cc578da2e7b2b6f78480.zip cpython-359b9e994b68de327950cc578da2e7b2b6f78480.tar.gz cpython-359b9e994b68de327950cc578da2e7b2b6f78480.tar.bz2 |
#2079: typo in userdict docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/userdict.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/userdict.rst b/Doc/library/userdict.rst index a97732d..7d36401 100644 --- a/Doc/library/userdict.rst +++ b/Doc/library/userdict.rst @@ -11,7 +11,7 @@ for classes that already have a minimum mapping interface. This greatly simplifies writing classes that need to be substitutable for dictionaries (such as the shelve module). -This also module defines a class, :class:`UserDict`, that acts as a wrapper +This module also defines a class, :class:`UserDict`, that acts as a wrapper around dictionary objects. The need for this class has been largely supplanted by the ability to subclass directly from :class:`dict` (a feature that became available starting with Python version 2.2). Prior to the introduction of |