for UserDict to be compatible with abcs, it must subclass object

This commit is contained in:
Benjamin Peterson
2010-01-27 02:15:28 +00:00
parent 74c2577497
commit 17527bedad
+1 -1
View File
@@ -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: