show/hide this revision's text 2 Added explanation of supplied code samples

I'm not familiar with "

Thomas' description of meta-classes here is excellent:

A metaclass is the class registry and unregistry"; are you mixing terminology from of a different language? Either wayclass. 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.

In the funky super(...).__new_examples you give, here's what's going on:

  • The call to _ stuff you're doing _new__ is beingbubbled up to the next thing in that first theMRO. In this case, super(MyType,cls) would resolve to type;calling type.__new__ lets Pythoncomplete it's normal instancecreation steps.

  • This example is not something you're ever going to have using meta-classesto doenforce a singleton. He'soverriding __new__ is called automatically during _call__ in themetaclass so that whenever a classinstance creationis created, he interceptsthat, and can bypass instancecreation if there already is almost exclusively used one(stored in meta-classescls.instance).

    AlsoNotethat overriding __new__ in themetaclass won't be good enough,there isn't really because that's only called whencreating the same concept of singletons in Python as you get in other languagesclass. There are ways to get Overriding__new__ on the same effect - ActiveState has some recipes I think - but you shouldn't ever need it reallyclass would work,however.I'm not really sure what you mean by MetaSingleton: are you using meta-classes

  • This shows a way to enforce singleton classes? If so, there are easier waysdynamicallycreate a class. Here's he'sappending the supplied class's nameto the created class name, andsingletons are generally considered adding it to be not a great idea anyway..the class hierarchy

  • show/hide this revision's text 1

    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.

    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.

    Python's own documentation is a very good reference, and completely up to date. There is an IBM developerWorks article 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.

    super is how you access an object's super-classes. It's more complex than (for example) Java's super keyword, mainly because of multiple inheritance in Python. As Super Considered Harmful explains, using super() can result in you implicitly using a chain of super-classes, the order of which is defined by the Method Resolution Order (MRO).

    You can see the MRO for a class easily by invoking mro() on the class (not on an instance). Note that meta-classes are not in an object's super-class hierarchy.

    I'm not familiar with "class registry and unregistry"; are you mixing terminology from a different language? Either way, the funky super(...).__new__ stuff you're doing in that first example is not something you're ever going to have to do. __new__ is called automatically during instance creation, and is almost exclusively used in meta-classes.

    Also, there isn't really the same concept of singletons in Python as you get in other languages. There are ways to get the same effect - ActiveState has some recipes I think - but you shouldn't ever need it really. I'm not really sure what you mean by MetaSingleton: are you using meta-classes to enforce singleton classes? If so, there are easier ways, and singletons are generally considered to be not a great idea anyway...

    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:

    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"
    
    >>> c_obj = C()
    meta: creating A (<type 'object'>,)
    meta: creating B (<type 'object'>,)
    meta: creating C (A, B)
    B init
    A init
    C init
    >>> c_obj.meth()
    A.meth
    >>> C.meta_meth()
    MyMeta.meta_meth
    >>> c_obj.meta_meth()
    Traceback (most recent call last):
      File "mro.py", line 38, in <module>
        c_obj.meta_meth()
    AttributeError: 'C' object has no attribute 'meta_meth'