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
