RE: [Zope-dev] debugging memory leaks

2003-10-27 Thread Tim Peters
[Seb Bacon] > ... > Seeing as the suspect leaker contains code like: > > other = Foo() > other.reciprocal = self > self.reciprocal = other > > I fear the worst ;-) > > ...but my (naive?) reading of the documentation was that reference > cycles are cleaned out by the garbage collector, *unless

[Zope-dev] cvs.zope.org back up

2003-10-27 Thread Jens Vagelpohl
... disk removal took a little longer than expected but we're back to normal now. jens ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.z

Re: [Zope-dev] debugging memory leaks

2003-10-27 Thread Seb Bacon
Tim Peters wrote: Debugging memory leaks can be hard, in any language. No kidding. I thought when I identified the suspect class two days ago I was nearly there ;-) Another place to look for ideas is in the top-level test.py from a current Zope HEAD checkout (or 2.7 branch, or Zope3). OK, wi

[Zope-dev] cvs.zope.org outage and maintenance

2003-10-27 Thread Jens Vagelpohl
cvs.zope.org had a problem with its hardware RAID controller today that required manual intervention. In order to solve what we think is the main cause we are going to have a downtime from 4PM EST until about 4:30 PM EST today to remove some dodgy hard drives. jens

RE: [Zope-dev] debugging memory leaks

2003-10-27 Thread Tim Peters
[Seb Bacon] > ... > I know from the refcounts in Zope that items of class Foo are > definitely leaking, yet when I do a sys.getobjects(0, Foo) I get > nothing back. If Foo is an old-style class, then every instance of Foo has type InstanceType (and so does every instance of every other old-style c

Re: [Zope-dev] how can I prevent undo?

2003-10-27 Thread Jeffrey P Shell
Actually, this should be doable by removing access to the ``Undo changes`` permission. -- Jeffrey P Shell [EMAIL PROTECTED] On Oct 26, 2003, at 1:49 PM, Andreas Jung wrote: By removing the Undo tab or by removing Un doSupport from the baseclasses of your objects? -aj --On Sonntag, 26. Oktober

Re: [Zope-dev] CVS Server unresponsive?

2003-10-27 Thread Jens Vagelpohl
cvs.zope.org seems to have locked up, we're looking into it jens On Oct 27, 2003, at 12:39, Sidnei da Silva wrote: Howdy folks, Im trying to cvs up and get the latest changes on CMF 1.4, but it just does time out. Any clue? [EMAIL PROTECTED]:~/src/cmf/1_4$ cvs up ssh: connect to host cvs.zope.o

[Zope-dev] CVS Server unresponsive?

2003-10-27 Thread Sidnei da Silva
Howdy folks, Im trying to cvs up and get the latest changes on CMF 1.4, but it just does time out. Any clue? [EMAIL PROTECTED]:~/src/cmf/1_4$ cvs up ssh: connect to host cvs.zope.org port 22: Connection timed out cvs [update aborted]: end of file from server (consult above messages if any) []'s

Re: [Zope-dev] Failure on make instance

2003-10-27 Thread Fred L. Drake, Jr.
Sidnei da Silva writes: > Maybe because the phrase 'file missing' triggered something :) Something like that, perhaps! Jeremy's comment wasn't so different, but didn't clue me in the same way. I'm glad to have fixed it for you! -Fred -- Fred L. Drake, Jr. PythonLabs at Zope Corporation

Re: [Zope-dev] Failure on make instance

2003-10-27 Thread Sidnei da Silva
| Of course, once your mail arrived, it was a lot easier t fix for some | reason(!). When I'd applied the patch from the trunk, I'd applied, | tested, and committed; what I didn't do was "cvs add" the new files on | the 2.7 branch! Maybe because the phrase 'file missing' triggered something :) |

Re: [Zope-dev] Failure on make instance

2003-10-27 Thread Fred L. Drake, Jr.
Sidnei da Silva writes: > I just cvs'upped zope from the 2.7 branch, make clean; make; make > instance; and it failed with: > > running install_data > error: can't copy 'zdaemon/component.xml': no matching files > make: *** [install] Error 1 > > Looks like a file is missing, or some scri

Re: [Zope-dev] Zope & .NET

2003-10-27 Thread Sidnei da Silva
On Mon, Oct 27, 2003 at 09:48:46AM +0100, Martin Kretschmar wrote: | Hello, | | I found this in Dr. Dobb's Python-URL! - weekly Python | news and links (Aug 7): | | There has been discussion on compiling Python with VC.NET. | Anton Vredegoor argues that Windows (and .NET) is just a | platfo

[Zope-dev] Failure on make instance

2003-10-27 Thread Sidnei da Silva
Howdy, I just cvs'upped zope from the 2.7 branch, make clean; make; make instance; and it failed with: running install_data error: can't copy 'zdaemon/component.xml': no matching files make: *** [install] Error 1 Looks like a file is missing, or some script wasn't updated. []'s -- Sidnei da S

[Zope-dev] debugging memory leaks

2003-10-27 Thread Seb Bacon
I've got a fairly major memory leak in my application. I've followed the thread from August including Shane's suggestions about using a debug build of Python to inspect object references and the rest [1] I know from the refcounts in Zope that items of class Foo are definitely leaking, yet when

Re: [Zope-dev] Zope & .NET

2003-10-27 Thread Martin Kretschmar
Hello, I found this in Dr. Dobb's Python-URL! - weekly Python news and links (Aug 7): There has been discussion on compiling Python with VC.NET. Anton Vredegoor argues that Windows (and .NET) is just a platform amongst many others. Also, Matt Gerrans provides answers to the question if P