summaryrefslogtreecommitdiffstats
path: root/Lib/UserDict.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2003-01-31 03:30:09 (GMT)
committerBarry Warsaw <barry@python.org>2003-01-31 03:30:09 (GMT)
commit1a17704ff18ab6aa678b346aa6f97faa37472929 (patch)
tree133bf2d37afc2b598b7524dc1044d1a18e47922e /Lib/UserDict.py
parentabc7cd27ffa1194bc7671eeef2b46a4a03fe5b93 (diff)
downloadcpython-1a17704ff18ab6aa678b346aa6f97faa37472929.zip
cpython-1a17704ff18ab6aa678b346aa6f97faa37472929.tar.gz
cpython-1a17704ff18ab6aa678b346aa6f97faa37472929.tar.bz2
typo in comment
Diffstat (limited to 'Lib/UserDict.py')
-rw-r--r--Lib/UserDict.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/UserDict.py b/Lib/UserDict.py
index f9ad471..fb9cdd5 100644
--- a/Lib/UserDict.py
+++ b/Lib/UserDict.py
@@ -77,7 +77,7 @@ class DictMixin:
# a minimum dictionary interface including getitem, setitem, delitem,
# and keys. Without knowledge of the subclass constructor, the mixin
# does not define __init__() or copy(). In addition to the four base
- # methods, progessively more efficiency comes with defining
+ # methods, progressively more efficiency comes with defining
# __contains__(), __iter__(), and iteritems().
# second level definitions support higher levels