I know class foo(object) is an old school way of defining a class. But I would like to understand in more details of the difference between these two. Thanks.
feedback
|
|
Prior to python 2.2 there were essentially two different types of class: Those defined by C extensions and C coded builtins (types) and those defined by python class statements (classes). This led to problems when you wanted to mix python-types and builtin types. The most common reason for this is subclassing. If you wanted to subclass the list type in python code, you were out of luck, and so various workarounds were used instead, such as subclassing the pure python implementation of lists (in the UserList module) instead. This was a fairly ugly, so in 2.2 there was a move to unify python and builtin types, including the ability to inherit from them. The result is "new style classes". These do have some incompatible differences to old-style classes however, so for backward compatability the bare class syntax creates an old-style class, while the new behaviour is obtained by inheriting from object. The most visible behaviour differences are:
| ||||
|
feedback
|
|
| |||
|
feedback
|
|
This change was made in python 2.2, see this PEP for an explanation of the differences. | |||||
feedback
|
|
Subclassing
| |||
feedback
|