Mercurial > hg > config
view python/namespace.py @ 615:6db42d965f0e
STUB: python/multiproc.py
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 02 Feb 2014 18:44:05 -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)