Re: [Python-Dev] new metaclass error condition checks

2007-04-25 Thread Armin Rigo
Hi Jean-Paul, On Mon, Apr 16, 2007 at 06:53:20PM -0400, Jean-Paul Calderone wrote: I just noticed r53997 (from some unit tests it broke), which disallowed things like this: class X(object): def __repr__(self): return blah class Y(X, type): pass

Re: [Python-Dev] new metaclass error condition checks

2007-04-20 Thread Thomas Wouters
On 4/17/07, Jean-Paul Calderone [EMAIL PROTECTED] wrote: I just noticed r53997 (from some unit tests it broke), which disallowed things like this: class X(object): def __repr__(self): return blah class Y(X, type): pass class Z: __metaclass__ =