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):
>
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__
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__ = Y
Making X classic eliminates the TypeError, and is probab