Re: [Zope-dev] Re: Refresh trashes acquisition

2002-07-28 Thread Toby Dickenson
On Saturday 27 Jul 2002 12:32 am, Ross Boylan wrote: > On Sat, Jul 27, 2002 at 12:26:04AM +0200, Lennart Regebro wrote: > > From: "Ross Boylan" <[EMAIL PROTECTED]> > > > > > I don't follow that last paragraph. Does it mean > > > 1. acquisition created by a.__of__(b) doesn't survive transactions.

Re: [Zope-dev] Extension class and __init__

2002-07-28 Thread Dieter Maurer
Ross Boylan writes: > The example there is basically > class Spam: > def __init__(self): > ... > > class ECSpam(Base, Spam): #Base is an ExtensionClass > def __init__(self): > ECSpam.inheritedAttribute('__init__')(self) I started to use the following idiom: class ECSpam(..