Seems like I am not the only one who has had problems with Python's evalution of default arguments :
class Namespace(object):
def __init__(self, __ns={}, **kwargs):
if kwargs: __ns.update(kwargs)
self.__dict__ = __ns
This particular example was found in comp.lang.python .
Inga kommentarer:
Skicka en kommentar