[Zope-dev] zope-tests - FAILED: 14, OK: 74

2011-05-01 Thread Zope tests summarizer
This is the summary for test reports received on the zope-tests list between 2011-04-30 00:00:00 UTC and 2011-05-01 00:00:00 UTC: See the footnotes for test reports of unsuccessful builds. An up-to date view of the builders is also available in our buildbot documentation: http://docs.zope.org/

[Zope-dev] Metaclass resolution for InterfaceClass

2011-05-01 Thread Laurence Rowe
While experimenting with my InterfaceClass subclass I noticed that it was only being used when it was specified as the first of the bases. I believe this is because InterfaceClass is not a subclass of ``type``, so the normal metaclass derivation logic is not applied. The attached patch implements t

Re: [Zope-dev] Adding a _frame argument to InterfaceClass.__init__ to make it subclassable

2011-05-01 Thread Laurence Rowe
On 1 May 2011 01:06, Laurence Rowe wrote: > Hi, > > I'd like to apply the attached patch to zope.interface trunk to make > it more easily subclassable without having to copy and paste a chunk > of its __init__ into the subclass' __init__. On closer inspection, this doesn't seem to be necessary. W

Re: [Zope-dev] Adding a _frame argument to InterfaceClass.__init__ to make it subclassable

2011-05-01 Thread Hanno Schlichting
On Sun, May 1, 2011 at 2:06 AM, Laurence Rowe wrote: > I'd like to apply the attached patch to zope.interface trunk to make > it more easily subclassable without having to copy and paste a chunk > of its __init__ into the subclass' __init__. The diff looks innocent enough to me. +1 on applying i