Re: [Zope-dev] moment when zope was started.

2005-11-07 Thread Victor Safronovich
VS>How could i find the moment when zope was started in Zope 2.8? VS>in Zope 2.7 was the variable 'Zope.Startup.started', which setted to True when VS>zope was started. VS>But in Zope 2.8 the variable 'Zope2.Startup.started' not changed its value to VS>True, because Zope2.

Re[2]: [Zope-dev] moment when zope was started.

2005-11-07 Thread Victor Safronovich
Hello Chris Withers, Monday, November 7, 2005, 8:15:58 PM, you wrote: CW> Victor Safronovich wrote: >> >>But in Zope 2.8 the variable 'Zope2.Startup.started' not changed its >> value to >>True, because Zope2.Startup.start_zope was never called, instead of that >> called >>Zope2.Sta

Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-07 Thread Chris Withers
Dave Coe wrote: I am hoping that someone can help me with how to construct a POST request in a python script. I tried searching the older messages, but post and get are such common terms, that I didn't have much luck. This all feels amazingly clunky, but then you are using dtml, so that's t

[Zope-dev] RE: Memory Leak Question

2005-11-07 Thread Dan Pozmanter
Sure thing: I was mucking around in _Acquisition.c with getattr, findattr, etc, and I noticed checked to see if my code was leaky. It was! I then checked just vanilla code, and found the same leak (only much much smaller). So here is what I did to make things more visible: In Wrapper_getattro, I

[Zope-dev] Re: Memory Leak Question

2005-11-07 Thread Florent Guillaume
Could you provide details about why you think there's a leak in the code (what led you to Wrapper_findattr), and how to reproduce it consistently on a blank platform (Zope 2.8.4 preferred)? Maybe open a bug in the collector at http://www.zope.org/Collectors/Zope/ also. Thanks, Florent Dan Po

RE: [Zope-dev] Memory Leak Question

2005-11-07 Thread Dan Pozmanter
Consider it reported then. (Sorry for the delay, I was out of the office for most of last week). It looks like the problem is in Wrapper_findattr. Any thoughts? ___ Daniel Pozmanter Siteworx, Inc. "Festina Lente" - Gaius Julius -Original Message- From: Chris McDonough [m

Re: [Zope-dev] moment when zope was started.

2005-11-07 Thread Chris Withers
Victor Safronovich wrote: But in Zope 2.8 the variable 'Zope2.Startup.started' not changed its value to True, because Zope2.Startup.start_zope was never called, instead of that called Zope2.Startup.run.run function. This sounds like a bug, but why do you want to know this? Chris --