Suppose, I have a custom metaclass and a class linked to it:
class Meta(type): pass class A(metaclass=Meta): pass
From my understanding that