I noticed that in Django models, there is a class Meta
which makes some additional definitions about the model.
My question is, why is this done as an old-style class? (i.e. not subclassing object
?) Is there a reason for this or is this just a custom? Could I do it as a new-style class in my projects?