Object that enables you to modify attributes.
| 5 | |
| 6 | |
| 7 | class Bunch: |
| 8 | """Object that enables you to modify attributes.""" |
| 9 | |
| 10 | def __init__(self, **kwargs): |
| 11 | self.__dict__.update(kwargs) |
| 12 | |
| 13 | |
| 14 | def mro_lookup(cls, attr, stop=None, monkey_patched=None): |
no outgoing calls