#2079: typo in userdict docs.

This commit is contained in:
Georg Brandl 2008-02-21 20:33:38 +00:00
parent ce584d420d
commit 359b9e994b
1 changed files with 1 additions and 1 deletions

View File

@ -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