Shouldn't __metaclass__ force the use of a metaclass in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:33:37Z http://stackoverflow.com/feeds/question/818483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/818483/shouldnt-metaclass-force-the-use-of-a-metaclass-in-python 0 Shouldn't __metaclass__ force the use of a metaclass in Python? allyourcode 2009-05-04T01:18:10Z 2009-05-05T05:46:32Z <p>I've been trying to learn about metaclasses in Python. I get the main idea, but I can't seem to activate the mechanism. As I understand it, you can specify M to be as the metaclass when constructing a class K by setting <code>__metaclass__</code> to M at the global or class level. To test this out, I wrote the following program:</p> <pre><code>p = print class M(type): def __init__(*args): type.__init__(*args) print("The rain in Spain") p(1) class ClassMeta: __metaclass__ = M p(2) __metaclass__ = M class GlobalMeta: pass p(3) M('NotMeta2', (), {}) p(4) </code></pre> <p>However, when I run it, I get the following output:</p> <pre> C:\Documents and Settings\Daniel Wong\Desktop>python --version Python 3.0.1 C:\Documents and Settings\Daniel Wong\Desktop>python meta.py 1 2 3 The rain in Spain 4 </pre> <p>Shouldn't I see "The rain in Spain" after 1 and 2? What's going on here?</p> http://stackoverflow.com/questions/818483/shouldnt-metaclass-force-the-use-of-a-metaclass-in-python/818502#818502 5 Answer by sth for Shouldn't __metaclass__ force the use of a metaclass in Python? sth 2009-05-04T01:29:25Z 2009-05-04T01:39:00Z <p>In Python 3 (which you are using) metaclasses are specified by a keyword parameter in the class definition:</p> <pre><code>class ClassMeta(metaclass=M): pass </code></pre> <p>Specifying a <code>__metaclass__</code> class property or global variable is old syntax from Python 2.x and not longer supported. See also <a href="http://docs.python.org/3.0/whatsnew/3.0.html#changed-syntax" rel="nofollow">"What's new in Python 3"</a> and <a href="http://www.python.org/dev/peps/pep-3115/" rel="nofollow">PEP 2115</a>.</p> http://stackoverflow.com/questions/818483/shouldnt-metaclass-force-the-use-of-a-metaclass-in-python/818508#818508 2 Answer by Alex Martelli for Shouldn't __metaclass__ force the use of a metaclass in Python? Alex Martelli 2009-05-04T01:33:34Z 2009-05-04T01:33:34Z <p>This works as you expect in Python 2.6 (and earlier), but in 3.0 metaclasses are specified differently:</p> <pre><code>class ArgMeta(metaclass=M): ... </code></pre> http://stackoverflow.com/questions/818483/shouldnt-metaclass-force-the-use-of-a-metaclass-in-python/818514#818514 2 Answer by Rick Copeland for Shouldn't __metaclass__ force the use of a metaclass in Python? Rick Copeland 2009-05-04T01:37:32Z 2009-05-04T01:37:32Z <p>The syntax of metaclasses has <a href="http://docs.python.org/3.0/whatsnew/3.0.html" rel="nofollow">changed</a> in Python 3.0. The <code>__metaclass__</code> attribute is no longer special at either the class nor the module level. To do what you're trying to do, you need to specify <code>metaclass</code> as a keyword argument to the <code>class</code> statement:</p> <pre><code>p = print class M(type): def __init__(*args): type.__init__(*args) print("The rain in Spain") p(1) class ClassMeta(metaclass=M): pass </code></pre> <p>Yields:</p> <pre><code>1 The rain in Spain </code></pre> <p>As you'd expect.</p>