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?
|
|
||||
|
|
|
In short, it sets free magical ponies. In long, Python 2.2 and earlier used "old style classes". They were a particular implementation of classes, and they had a few limitations (for example, you couldn't subclass builtin types). The fix for this was to create a new style of class. But, doing this would involve some backwards-incompatible changes. So, to make sure that code which is written for old style classes will still work, the In longer, see Guido's Unifying types and classes in Python 2.2. And, in general, it's a good idea to get into the habit of making all your classes new-style, because some things (the |
||||
|
|
It has to do with the "new-style" of classes. You can read more about it here: http://docs.python.org/tutorial/classes.html#multiple-inheritance and also here: http://docs.python.org/reference/datamodel.html#new-style-and-classic-classes Using new-style classes will allow you to use "Python's newer, versatile features like _slots_, descriptors, properties, and _getattribute_()." |
|||
|
|
|
Right, but it marks the class as a new-style class. Newly developed classes should use the |
|||
|
|
|
Short answer: subclassing For the difference between |
|||
|
|
|
The short version is that classic classes, which didn't need a superclass, had limitations that couldn't be worked around without breaking a lot of old code. So they created the concept of new-style classes which subclass from The details are in section 3.3 of the Python docs: New-style and classic classes. |
|||
|
|
|
Python 2.2 introduced "new style classes" which had a number of additional features relative to the old style classes which did not subclass object. Subclasses object was the chosen way to indicate that your class should be a new style class, not an old style one. |
|||
|
|