for UserDict to be compatible with abcs, it must subclass object
This commit is contained in:
parent
74c2577497
commit
17527bedad
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue