Hrvoje Niksic <[EMAIL PROTECTED]> writes:
> Joshua Kugler <[EMAIL PROTECTED]> writes:
>
>> self.me = []
>> self.me = {}
>
> Use "object.__setattr__(self, 'me') = []" and likewise for {}.Oops, that should of course be "object.__setattr__(self, 'me', [])". -- http://mail.python.org/mailman/listinfo/python-list
