Mercurial > hg > config
view python/namespace.py @ 720:f136912c81a9
remove
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 04 Nov 2014 15:06:59 -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)
