Mercurial > hg > config
view python/namespace.py @ 628:08574641d801
STUB: bin/macaddr.sh
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 19 Feb 2014 16:03:17 -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)