What is the purpose of subclassing the class "object" in Python?
- by ignoramus
All the Python built-ins are subclasses of object and I come across many user-defined classes which are too. Why? What is the purpose of the class object? It's just an empty class, right?