Mercurial > hg > config
view python/namespace.py @ 611:8e23bbc9c197
STUB: python/multiproc.py
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sun, 02 Feb 2014 15:32:29 -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)
