Mercurial > hg > config
view python/namespace.py @ 629:b0bfa6a0058f
STUB: bin/clone-mozbase.sh
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 19 Feb 2014 16:12:24 -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)