Mercurial > hg > config
view python/namespace.py @ 703:8466deea2eaf
fuck autofill mode
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 02 Sep 2014 13:16:38 -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)
