"MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T04:10:34Z http://stackoverflow.com/feeds/question/395982 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exa 12 "MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly JV 2008-12-28T08:41:45Z 2009-01-12T19:45:39Z <p>I have read posts like these:</p> <ol> <li><a href="http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python">What is a metaclass in Python?</a> </li> <li><a href="http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python">What are your (concrete) use-cases for metaclasses in Python?</a></li> <li><a href="http://fuhm.net/super-harmful/" rel="nofollow">Python's Super is nifty, but you can't use it</a></li> </ol> <p>but somehow I got confused, many confusions like</p> <p>when and why i would have to do something like this </p> <pre><code>#refer link1 return super(MyType, cls).__new__(cls, name, bases, newattrs) </code></pre> <p>or</p> <pre><code>#refer link2 return super(MetaSingleton, cls).__call__(*args, **kw) </code></pre> <p>or</p> <pre><code>#refer link2 return type(self.__name__ + other.__name__, (self, other), {}) </code></pre> <p>how does super work exactly?</p> <p>what is class registry and unregistry in link1 and how it exactly works? (I thought it has something to do with singleton, I may be wrong, being from C background, my coding style is still a mix of functional and OO).</p> <p>Can someone explain the flow of class instantiation (subclass, metaclass, super, type) and method invocation (</p> <p><code>metaclass-&gt;__new__, metaclass-&gt;__init__, super-&gt;__new__, subclass-&gt;__init__ inherited from metaclass</code></p> <p>) with a well commented working code (though the first link is quite close, but does not talk about cls keyword and super(..) and registry). Preferably an example with multiple inheritance.</p> <p>P.S.: made the last part as code because SO formatting was converting the text <code>metaclass-&gt;__new__</code> to metaclass-><strong>new</strong></p> <p>For experts here: please feel free to correct the question if there is a snag.</p> http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exa/396109#396109 7 Answer by Alabaster Codify for "MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly Alabaster Codify 2008-12-28T11:36:08Z 2008-12-28T12:02:42Z <p>OK, you've thrown quite a few concepts into the mix here! I'm going to pull out a few of the specific questions you have.</p> <p>In general, understanding super, the MRO and metclasses is made much more complicated because there have been lots of changes in this tricky area over the last few versions of Python.</p> <p><a href="http://docs.python.org/reference/datamodel.html" rel="nofollow">Python's own documentation</a> is a very good reference, and completely up to date. There is an <a href="http://www.ibm.com/developerworks/linux/library/l-pymeta.html" rel="nofollow">IBM developerWorks article</a> which is fine as an introduction and takes a more tutorial-based approach, but note that it's five years old, and spends a lot of time talking about the older-style approaches to meta-classes.</p> <p><strong><code>super</code></strong> is how you access an object's super-classes. It's more complex than (for example) Java's <code>super</code> keyword, mainly because of multiple inheritance in Python. As <a href="http://fuhm.net/super-harmful/" rel="nofollow">Super Considered Harmful</a> explains, using <code>super()</code> can result in you implicitly using a chain of super-classes, the order of which is defined by the <a href="http://www.python.org/download/releases/2.3/mro/" rel="nofollow">Method Resolution Order</a> (MRO).</p> <p>You can see the MRO for a class easily by invoking <code>mro()</code> on the class (not on an instance). Note that meta-classes are not in an object's super-class hierarchy.</p> <p><a href="http://stackoverflow.com/users/17624/thomas-wouters">Thomas</a>' description of meta-classes <a href="http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python">here</a> is excellent:</p> <blockquote> <p>A metaclass is the class of a class. Like a class defines how an instance of the class behaves, a metaclass defines how a class behaves. A class is an instance of a metaclass.</p> </blockquote> <p>In the examples you give, here's what's going on:</p> <ol> <li><p>The call to <code>__new__</code> is being bubbled up to the next thing in the MRO. In this case, <code>super(MyType, cls)</code> would resolve to <code>type</code>; calling <code>type.__new__</code> lets Python complete it's normal instance creation steps.</p></li> <li><p>This example is using meta-classes to enforce a singleton. He's overriding <code>__call__</code> in the metaclass so that whenever a class instance is created, he intercepts that, and can bypass instance creation if there already is one (stored in <code>cls.instance</code>). Note that overriding <code>__new__</code> in the metaclass won't be good enough, because that's only called when creating the <em>class</em>. Overriding <code>__new__</code> on the class would work, however.</p></li> <li><p>This shows a way to dynamically create a class. Here's he's appending the supplied class's name to the created class name, and adding it to the class hierarchy too.</p></li> </ol> <p>I'm not exactly sure what sort of code example you're looking for, but here's a brief one showing meta-classes, inheritance and method resolution:</p> <pre><code>class MyMeta(type): def __new__(cls, name, bases, dct): print "meta: creating %s %s" % (name, bases) return type.__new__(cls, name, bases, dct) def meta_meth(cls): print "MyMeta.meta_meth" __repr__ = lambda c: c.__name__ class A(object): __metaclass__ = MyMeta def __init__(self): super(A, self).__init__() print "A init" def meth(self): print "A.meth" class B(object): __metaclass__ = MyMeta def __init__(self): super(B, self).__init__() print "B init" def meth(self): print "B.meth" class C(A, B): __metaclass__ = MyMeta def __init__(self): super(C, self).__init__() print "C init" &gt;&gt;&gt; c_obj = C() meta: creating A (&lt;type 'object'&gt;,) meta: creating B ( http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exa/396192#396192 8 Answer by S.Lott for "MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly S.Lott 2008-12-28T14:11:03Z 2008-12-28T14:11:03Z <p>Here's the more pragmatic answer.</p> <p><strong>It rarely matters</strong></p> <ol> <li><p>"<a href="http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python">What is a metaclass in Python</a>". Bottom line, <code>type</code> is the metaclass of all classes. You have almost no practical use for this. </p> <pre><code>class X(object): pass type(X) == type </code></pre></li> <li><p>"<a href="http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python">What are your (concrete) use cases for metaclasses in Python?</a>". Bottom line. None.</p></li> <li><p>"<a href="http://fuhm.net/super-harmful/" rel="nofollow">Python's Super is nifty, but you can't use it</a>". Interesting note, but little practical value. You'll never have a need for resolving complex multiple inheritance networks. It's easy to prevent this problem from arising by using an explicity <strong>Strategy</strong> design instead of multiple inheritance. </p></li> </ol> <p>Here's my experience over the last 7 years of Python programming.</p> <ol> <li><p>A class has 1 or more superclasses forming a simple chain from my class to <code>object</code>.</p></li> <li><p>The concept of "class" is defined by a metaclass named <code>type</code>. I might want to extend the concept of "class", but so far, it's never come up in practice. Not once. <code>type</code> always does the right thing.</p></li> <li><p>Using <code>super</code> works out really well in practice. It allows a subclass to defer to it's superclass. It happens to show up in these metaclass examples because they're extending the built-in metaclass, <code>type</code>. </p> <p>However, in all subclass situations, you'll make use of <code>super</code> to extend a superclass.</p></li> </ol> <p><strong>Metaclasses</strong></p> <p>The metaclass issue is this: </p> <ul> <li><p>Every object has a reference to it's type definition, or "class".</p></li> <li><p>A <code>class</code> is, itself, also an object.</p></li> <li><p>Therefore a object of type <code>class</code> has a reference to it's type or "class". The "class" of a "class" is a metaclass.</p></li> </ul> <p>Since a "class" isn't a C++ run-time object, this doesn't happen in C++. It does happen in Java, Smalltalk and Python.</p> <p>A metaclass defines the behavior of a class object.</p> <ul> <li><p>90% of your interaction with a class is to ask the class to create a new object.</p></li> <li><p>10% of the time, you'll be using class methods or class variables ("static" in C++ or Java parlance.)</p></li> </ul> <p>I have found a few use cases for class-level methods. I have almost no use cases for class variables. I've never had a situation to change the way object construction works.</p> http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exa/436739#436739 0 Answer by JV for "MetaClass", "__new__", "cls" and "super" - can someone explain the mechanism exactly JV 2009-01-12T19:45:39Z 2009-01-12T19:45:39Z <p>A very useful link <a href="http://cleverdevil.org/computing/78/" rel="nofollow">http://cleverdevil.org/computing/78/</a> found it lately, so posting it for interest of all. It came on Reddit actually.</p>