[Zope-dev] Different code layout for Persistence between various Zope versions was: RE: [Zope] Can not import PersistentMapping)

2004-01-25 Thread Dieter Maurer
Sean wrote at 2004-1-24 11:12 -0500: ... Looking at the ZOPE 2.6.2 Source on the Windows machine, I see code for modules: Persistence.PersistentMapping, and Persistence.PersistentList On Linux, the Zope 2.6.1 Source has a Persistence Directory with nothing in it. The __init__.py file says:

Re: [Zope-dev] cPickleCache endless loop...

2004-01-25 Thread Dieter Maurer
Jeremy Hylton wrote at 2004-1-23 12:12 -0500: ... The only useful answer is to avoid using __del__ on persistent objects. If there are resources that really need to be finalized whenever the object is ghosted, you can put them in a non-persistent sub-object that does have an __del__. A minor