[issue1294232] Error in metaclass search order
Amaury Forgeot d'Arc
report at bugs.python.org
Mon Sep 13 17:35:12 CEST 2010
Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:
What also worries me is the difference between the "class" statement and the type() function.
class M_A(type):
def __new__(mcls, name, bases, ns):
print('M_A.__new__', mcls, name, bases)
return super().__new__(mcls, name, bases, ns)
class M_B(M_A):
def __new__(mcls, name, bases, ns):
print('M_B.__new__', mcls, name, bases)
return super().__new__(mcls, name, bases, ns)
class A(metaclass=M_A): pass
class B(metaclass=M_B): pass
class C(A, B): pass
D = type('D', (A, B), {})
The construction of C and D won't print the same messages.
----------
nosy: +amaury.forgeotdarc
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue1294232>
_______________________________________
More information about the Python-bugs-list
mailing list