2 Feb
2003
2 Feb
'03
6:24 p.m.
Sean K wrote at 2003-2-2 02:50 -0800:
.... The main product contains a __getitem__ method, as does the descriptions product.
I can traverse to a description however a call to a mthod of the description product that returns the aq_chain displays as [,,,]. Your "__getitem__" must wrap the object into the context of the parent:
def __getitem__(self,key): return <get at the object>.__of__(self) Dieter