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 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"""A more or less complete user-defined wrapper around dictionary objects.""" """A more or less complete user-defined wrapper around dictionary objects."""
class UserDict: class UserDict(object):
def __init__(self, dict=None, **kwargs): def __init__(self, dict=None, **kwargs):
self.data = {} self.data = {}
if dict is not None: if dict is not None: