The fact is that what orchestrates the call of __new__
and __init__
of an ordinary class is the __call__
method on its metaclass. The code in the __call__
method of type
, the default metatype, is in C, but the equivalent of it in Python would be:
class type:
...
def __call__(cls, *args, **kw):
instance = cls.__new__(cls, *args, **kw) # __new__ is actually a static method - cls has to be passed explicitly
if isinstance(instance, cls):
instance.__init__(*args, **kw)
return instance
That takes place for most object instantiation in Python, including when instantiating classes themselves - the metaclass is implicitly called as part of a class statement. In this case, the __new__
and __init__
called from type.__call__
are the methods on the metaclass itself. And in this case, type
is acting as the "metametaclass" - a concept seldom needed, but it is what creates the behavior you are exploring.
When creating classes, type.__new__
will be responsible for calling the class (not the metaclass) __init_subclass__
, and its descriptors' __set_name__
methods - so, the "metametaclass" __call__
method can't control that.
So, if you want the args passed to the metaclass __init__
to be programmatically modified, the "normal" way will be to have a "metametaclass", inheriting from type
and distinct from your metaclass itself, and override its __call__
method:
class MM(type):
def __call__(metacls, name, bases, namespace, **kw):
name = modify(name)
cls = metacls.__new__(metacls, name, bases, namespace, **kw)
metacls.__init__(cls, name, bases, namespace, **kw)
return cls
# or you could delegate to type.__call__, replacing the above with just
# return super().__call__(modify(name), bases, namespace, **kw)
Of course that is a way to get to go closer to "turtles all way to the bottom" than anyone would ever like in production code.
An alternative is to keep the modified name as an attribute on the metaclass, so that its __init__
method can take the needed information from there, and ignore the name passed in from its own metaclass' __call__
invocation. The information channel can be an ordinary attribute on the metaclass instance. Well - it happens that the "metaclass instance" is the class being created itself - and oh, see - that the name passed to type.__new__
already gets recorded in it - on the __name__
atribute.
In other words, all you have to do to use a class name modified in a metaclass __new__
method in its own __init__
method, is to ignore the passed in name
argument, and use cls.__name__
instead:
class Meta(type):
def __new__(mcls, name, bases, namespace, **kw):
name = modified(name)
return super().__new__(mcls, name, bases, namespace, **kw)
def __init__(cls, name, bases, namespace, **kw):
name = cls.__name__ # noQA (otherwise linting tools would warn on the overriden parameter name)
...