3 Aug
2000
3 Aug
'00
2:10 p.m.
First, make sure you're returning the instances in the context of their container, e.g. instead of:
def returnstuff(self): class foo: pass return foo()
do
def returnstuff(self): class foo: pass return foo().__of__(self)
If you want to do that, then you need to inherit the acquisition base class too....
def returnstuff(self): class foo(Acquisition.Implicit): pass return foo().__of__(self)
Oops... yes. Thanks....