On Aug 12, 7:28 pm, mwojc <[EMAIL PROTECTED]> wrote: > Hi! > My class with implemented __getattr__ and __setattr__ methods cannot be > pickled because of the Error:
Another option is to define __getstate__ on your class: def __getstate__(self): return vars(self) M.S. -- http://mail.python.org/mailman/listinfo/python-list