Mercurial > hg > config
view python/namespace.py @ 763:e047129c84bc
ch ch ch changes
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Wed, 06 Jan 2016 09:44:57 -0800 |
| parents | 0a979b847461 |
| children |
line wrap: on
line source
class Namespace(object): def __init__(self, **kwargs): for key, value in kwargs.items(): setattr(self, key, value)
