show/hide this revision's text 4 put titles on links

I have read posts like

link1 - http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python

link2 - http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python

link3 - http://fuhm.net/super-harmful/these:

  1. What is a metaclass in Python?
  2. What are your (concrete) use-cases for metaclasses in Python?
  3. Python's Super is nifty, but you can't use it

but somehow I got confused, many confusions like

when and why i would have to do something like this

#refer link1
return super(MyType, cls).__new__(cls, name, bases, newattrs)

or

#refer link2
return super(MetaSingleton, cls).__call__(*args, **kw)

or

#refer link2
return type(self.__name__ + other.__name__, (self, other), {})

how does super work exactly?

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).

Can someone explain the flow of class instantiation (subclass, metaclass, super, type) and method invocation (

metaclass->__new__, metaclass->__init__, super->__new__, subclass->__init__ inherited from metaclass

) 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.S.: made the last part as code because SO formatting was converting the text metaclass->__new__ to metaclass->new

For experts here: please feel free to correct the question if there is a snag.

show/hide this revision's text 3 made references more explicit

I have read posts like

link1 - http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python

link2 - http://stackoverflow.com/questions/392160/what-are-your-concrete-use-cases-for-metaclasses-in-python

link3 - http://fuhm.net/super-harmful/

but somehow I got confused, many confusions like

when and why i would have to do something like this

#first link
refer link1
return super(MyType, cls).__new__(cls, name, bases, newattrs)

or

#second link
refer link2
return super(MetaSingleton, cls).__call__(*args, **kw)

or

#second link
refer link2
return type(self.__name__ + other.__name__, (self, other), {})

how does super work exactly?

what is class registry and unregistry in first link 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).

Can someone explain the flow of class instantiation (subclass, metaclass, super, type) and method invocation (

metaclass->__new__, metaclass->__init__, super->__new__, subclass->__init__ inherited from metaclass

) 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.S.: made the last part as code because SO formatting was converting the text metaclass->__new__ to metaclass->new

For experts here: please feel free to correct the question if there is a snag.

show/hide this revision's text 2 typo corrected

"MetaClass", "__new__", "cls" and "super" - can someone exaplain explain the mechanism exactly

show/hide this revision's text 1