Is there a dunder method which corresponds to using the dictionary unpacking opertator **
on an object?
For example:
class Foo():
def __some_dunder__(self):
return {'a': 1, 'b': 2}
foo = Foo()
assert {'a': 1, 'b': 2} == {**foo}
Is there a dunder method which corresponds to using the dictionary unpacking opertator **
on an object?
For example:
class Foo():
def __some_dunder__(self):
return {'a': 1, 'b': 2}
foo = Foo()
assert {'a': 1, 'b': 2} == {**foo}
Copyright © 2021 Jogjafile Inc.
I've managed to satisfy the constraint with two methods (Python 3.9)
__getitem__
andkeys()
:For more complete solution you can subclass from
collections.abc.Mapping
(Needs implementing 3 methods__getitem__
,__iter__
,__len__
)