Add DotDict.__iter__, yields key value pairs.
This commit is contained in:
parent
83a3bee53d
commit
053a25cc58
1 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,11 @@ class DotDict:
|
|||
def __setattr__(self, key, value):
|
||||
self.__dict__[key] = value
|
||||
|
||||
def __iter__(self):
|
||||
display = self.__dict__.copy()
|
||||
display.pop('_DotDict__default')
|
||||
return iter(display.items())
|
||||
|
||||
def __repr__(self):
|
||||
display = self.__dict__.copy()
|
||||
display.pop('_DotDict__default')
|
||||
|
|
Loading…
Reference in a new issue