What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?
|
3
|
|||||||
|
|
|
From http://docs.python.org/ref/node33.html :
|
|||
|
|
|
Declaration-wise: New-style classes inherit from object.
Old-style classes don't.
|
|||
|
|
|
|
In the first answer, there is a missing "is":
should be:
|
||||
|
|
|
New-style classes inherit from object and must be written as such in Python 2.2 onwards (i.e. 'class Classname(object):' instead of 'class Classname:'). The core change is to unify types and classes, and the nice side-effect of this is that it allows you to inherit from built-in types. Read descrintro for more details. |
||
|
|
|
|
Or rather, you should always use new-style classes, unless you have code that needs to work with versions of Python older than 2.2. |
||
|
|
|
|
The short answer: old-style classes are only there for backwards compatibility, and will go away in Python 3.0. You should always use new-style classes. |
||
|
|
