Mercurial > hg > config
view python/namespace.py @ 721:2ebf5cef55de
move to k0s.org/hg/configuration
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 04 Nov 2014 15:09:33 -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)
