Mercurial > hg > config
view python/namespace.py @ 604:2786c3293fb5
STUB: .gitconfig
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Fri, 31 Jan 2014 09:02:49 -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)
