Document ImmutableObject class

This commit is contained in:
Stein Magnus Jodal 2010-02-15 22:37:45 +01:00
parent 1d6ecace00
commit 0ab6a311e5

View File

@ -1,6 +1,14 @@
from copy import copy
class ImmutableObject(object):
"""
Superclass for immutable objects whose fields can only be modified via the
constructor.
:param kwargs: kwargs to set as fields on the object
:type kwargs: any
"""
def __init__(self, *args, **kwargs):
self.__dict__.update(kwargs)