Mercurial > hg > config
view python/namespace.py @ 673:1b8ea91f00a0
STUB: python/epoch2date.py
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 06 May 2014 14:26:05 -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)