[minor] _dict copy method call
This commit is contained in:
parent
347921bef0
commit
9ffb1dbdd8
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ class _dict(dict):
|
|||
super(_dict, self).update(d)
|
||||
return self
|
||||
def copy(self):
|
||||
return _dict(super(_dict, self).copy())
|
||||
return _dict(dict(self).copy())
|
||||
|
||||
def __getattr__(self, key):
|
||||
return local.get("key", None)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue