Mercurial > hg > config
view python/namespace.py @ 695:9d3b030696fa
STUB: .bashrc
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Thu, 10 Jul 2014 10:07:19 -0700 |
| 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)
