Mercurial > hg > config
view python/namespace.py @ 596:c5537e841c78
wip
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Wed, 29 Jan 2014 11:12:09 -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)
