[Zope-dev] Zope tests: 8 OK

2006-01-12 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Wed Jan 11 12:01:02 2006 UTC to Thu Jan 12 12:01:02 2006 UTC. There were 8 messages: 8 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux From: Zope Unit Tests Date: Wed Jan 11 21:02:47 EST 2

RE: [Zope-dev] BTreeFolder2.objectIds() - accessing _tree.keys() slow

2006-01-12 Thread sean . upton
> > Hacking objectIds() as follows (diff against trunk pasted inline) - > > gettting ids off of the meta type index for all used meta types - > > seems to make things much quicker. Two questions: > > Are you sure this actually works? _mt_index.keys() is > supposed to provide a list of all m

[Zope-dev] buildbot failure in Zope branches 2.9 2.4 Linux zc-buildbot

2006-01-12 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.9 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 2735 Blamelist: andreasjung,dobe,jinty,mkerrin,oestermeier,poster,tim_one,yuppie BUILD FAILED: failed test sincerely, -The Bui

[Zope-dev] buildbot failure in Zope trunk 2.4 Windows 2000 zc-bbwin6

2006-01-12 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Windows 2000 zc-bbwin6. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 2734 Blamelist: andreasjung,dobe,jinty,mkerrin,oestermeier,poster,tim_one,yuppie BUILD FAILED: failed failed slave lost sincerely

[Zope-dev] buildbot failure in Zope branches 2.9 2.4 Windows 2000 zc-bbwin2

2006-01-12 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.9 2.4 Windows 2000 zc-bbwin2. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 2735 Blamelist: andreasjung,dobe,jinty,mkerrin,oestermeier,poster,tim_one,yuppie BUILD FAILED: failed failed slave lost si

[Zope-dev] Re: BTreeFolder2.objectIds() - accessing _tree.keys() slow

2006-01-12 Thread Florent Guillaume
[EMAIL PROTECTED] wrote: I have very large BTreeFolder2 (CMFMember via BaseBTreeFolder in Archetypes) - has about 260k items in _tree - objectIds() is painfully slow, as is self._tree.keys() Independently of the fastest way, I'm curious what use case you have to have a need to get all the keys

[Zope-dev] Seeking brave souls to try Zope 2.9 Windows installer

2006-01-12 Thread Tim Peters
Most of the last two days I've been whacking on Zope 2.9 to build a "Zope 2 style" Windows installer that bundles Python 2.4.2, and cooperates with the new zpkgtools-created tarball layout. The build-the-Windows-installer code got simpler as a result, but ... This work is being done on branch:

[Zope-dev] Re: Seeking brave souls to try Zope 2.9 Windows installer

2006-01-12 Thread Sidnei da Silva
Way to go Tim! You beat me to it. I was supposed to look at this soon but got back from vacation just this tuesday. I will make sure your installer gets testing and try to fix any eventual issues. Thank you very much! On Thu, Jan 12, 2006 at 07:25:35PM -0500, Tim Peters wrote: | Most of the last

Re: [Zope-dev] BTreeFolder2.objectIds() - accessing _tree.keys() slow

2006-01-12 Thread Shane Hathaway
[EMAIL PROTECTED] wrote: I'm pretty sure this works. Ok, I get it now. I misread it the first time. This returns the equivalent of running self.objectIds(spec=self._mt_index.keys()) on the current trunk/release code, which should be identical to self._tree.keys(), but much, much faster. I'm