From: Georg Brandl Date: Thu, 21 Feb 2008 20:33:38 +0000 (+0000) Subject: #2079: typo in userdict docs. X-Git-Tag: v2.6a1~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=359b9e994b68de327950cc578da2e7b2b6f78480;p=thirdparty%2FPython%2Fcpython.git #2079: typo in userdict docs. --- diff --git a/Doc/library/userdict.rst b/Doc/library/userdict.rst index a97732d03cc7..7d3640153c9e 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