[Answered ]-Python Subclass Tracking – Metaclasses vs Builtin

2👍

Using metaclasses means that all the information you stored inside the class itself. It also means the info is stored as the classes are created, rather than scanning all of them afterwards. This means that all you need to worry about is creating classes – they are tracked automatically.

Leave a comment