From: Georg Brandl Date: Thu, 21 Feb 2008 20:34:22 +0000 (+0000) Subject: #2079: typo in userdict docs. X-Git-Tag: v2.5.3c1~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=799e580ad4b5ca6c0c678d2926361e9c4bd01b71;p=thirdparty%2FPython%2Fcpython.git #2079: typo in userdict docs. --- diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex index 0bb57c826aeb..c4c5ca913eee 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