Mercurial > hg > config
view python/namespace.py @ 672:0eff3f3658ed
STUB: python/mountusb.py
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Mon, 05 May 2014 01:47:27 -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)
