diff options
author | Georg Brandl <georg@python.org> | 2008-02-21 20:34:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-21 20:34:22 (GMT) |
commit | 799e580ad4b5ca6c0c678d2926361e9c4bd01b71 (patch) | |
tree | 2857c96ba377cfdd36d24a7a90e2e25e90677219 /Doc | |
parent | 3a32cffdadc121706abb9f38308095b5a0756826 (diff) | |
download | cpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.zip cpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.tar.gz cpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.tar.bz2 |
#2079: typo in userdict docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libuserdict.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex index 0bb57c8..c4c5ca9 100644 --- a/Doc/lib/libuserdict.tex +++ b/Doc/lib/libuserdict.tex @@ -10,7 +10,7 @@ methods 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 |