summaryrefslogtreecommitdiffstats
path: root/Lib/UserDict.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-27 02:24:25 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-27 02:24:25 (GMT)
commit3059caadc6329ba7d207b0c909bc33a361a432a8 (patch)
treec7e3df0f11b3090ceceaeb0ad30151c6fab3e3ed /Lib/UserDict.py
parent01bd3ece5ca1ab29f756b7b07c2445d9ef570016 (diff)
downloadcpython-3059caadc6329ba7d207b0c909bc33a361a432a8.zip
cpython-3059caadc6329ba7d207b0c909bc33a361a432a8.tar.gz
cpython-3059caadc6329ba7d207b0c909bc33a361a432a8.tar.bz2
Merged revisions 77788-77789 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77788 | benjamin.peterson | 2010-01-26 20:15:28 -0600 (Tue, 26 Jan 2010) | 1 line for UserDict to be compatible with abcs, it must subclass object ........ r77789 | benjamin.peterson | 2010-01-26 20:16:42 -0600 (Tue, 26 Jan 2010) | 1 line raise a clear TypeError when trying to register a non-class ........
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 0d9591a..df5f7fb 100644
--- a/Lib/UserDict.py
+++ b/Lib/UserDict.py
@@ -1,6 +1,6 @@
"""A more or less complete user-defined wrapper around dictionary objects."""
-class UserDict:
+class UserDict(object):
def __init__(self, dict=None, **kwargs):
self.data = {}
if dict is not None: