Re: [Zope] [Ann] "analyseObjects": analyse live objects

2007-04-11 Thread Marco Bizzarri

On 4/11/07, Dieter Maurer <[EMAIL PROTECTED]> wrote:

Halle Marco,

Marco Bizzarri wrote at 2007-4-10 21:41 +0200:
> ...
>am I missing something, or the code is not on the web?

I tried and it was there...




My apologies: yesterday I was unable to find it. Next time I will ask
someone to check for me before sending to the ML.

(BTW: thanks for analyseObjects :-) )

--
Marco Bizzarri
http://iliveinpisa.blogspot.com/
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] [Ann] "analyseObjects": analyse live objects

2007-04-11 Thread Dieter Maurer
Halle Marco,

Marco Bizzarri wrote at 2007-4-10 21:41 +0200:
> ...
>am I missing something, or the code is not on the web?

I tried and it was there...



-- 
Dieter
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] [Ann] "analyseObjects": analyse live objects

2007-04-10 Thread Maciej Wisniowski

> Hi Dieter,
> 
> am I missing something, or the code is not on the web?
I'm able to get the code from here:
http://www.dieter.handshake.de/pyprojects/zope/analyseObjects.py

-- 
Maciej Wisniowski
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] [Ann] "analyseObjects": analyse live objects

2007-04-10 Thread Marco Bizzarri

On 4/10/07, Dieter Maurer <[EMAIL PROTECTED]> wrote:



More information and download:

  




Hi Dieter,

am I missing something, or the code is not on the web?

Regards
Marco

--
Marco Bizzarri
http://iliveinpisa.blogspot.com/
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] [Ann] "analyseObjects": analyse live objects

2007-04-10 Thread Dieter Maurer
With ExtensionClass becoming a Python new style class (i.e. with Zope 2.8), 
Zope's main tool to analyse memory leaks (the "Refcount"s display in 
"Control_Panel --> Debug information) lost most of its value as it now only 
reports refcounts for old style classes and acquistion wrappers. Therefore, I 
developped analyseObjects. It can be used as an "External Method".

analyseObjects analyses the objects known to the garbage collector. Usually, 
these include only objects that can contain links to other objects (such as 
tuples, lists, dicts, class instances, ...). Therefore, it can not detect all 
memory leaks (e.g. an old leak losing string objects in the session machinery 
could not have been detected). Nevertheless, it is a valuable aid.

More information and download:

  



-- 
Dieter
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )