[Zope-dev] __setattr__ --> Zope Crash :S
Chris Withers
chrisw@nipltd.com
Wed, 09 Aug 2000 11:53:03 +0100
Wow... I'm writing this whole thread myself ;-)
def __setattr__(self,name,value):
< self.__setitem__(self,name,value)
> self.__setitem__(name,value)
> Erk...
>
> first problem, why does a Zope __setattr__ take four arguments?!
It doesn't, I just gave it four... d'oh!
However, if I now try to add a DataBlob, I get quite an impressive NT
exception thrown :S
The application, ./python.exe, generated an application error
The error occurred on 8/ 9/2000 @ 11:48:41.189
The exception generated was c00000fd at address 7800118b (lock)
DrWatson also said this was a Stack Overflow error.
Now what am I doing wrong? ;-)
Chris