vote up 13 vote down star
3

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?

flag

I wasn't even aware there were new vs. old classes. It wasn't covered in any of the Python books I have nor do I recall seeing it online. Now I have to learn that, too. – crystalattice Oct 29 '08 at 2:29
1  
Nobody seems to be able to really explain clearly what the difference is. In most cases it is unnoticeable anyway. Some features, though, such as the property protocol, are only available with new style classes, IIRC. – UncleZeiv Jun 29 at 9:44

6 Answers

vote up 19 vote down check

From http://docs.python.org/ref/node33.html :

Up to Python 2.1, old-style classes were the only flavour available to the user. The concept of (old-style) class is unrelated to the concept of type: if x is an instance of an old-style class, then x.__class__ designates the class of x, but type(x) is always < type 'instance'>. This reflects the fact that all old-style instances, independently of their class, are implemented with a single built-in type, called instance.

New-style classes were introduced in Python 2.2 to unify classes and types. A new-style class neither more nor less than a user-defined type. If x is an instance of a new-style class, then type(x) is the same as x.__class__.

The major motivation for introducing new-style classes is to provide a unified object model with a full meta-model. It also has a number of immediate benefits, like the ability to subclass most built-in types, or the introduction of "descriptors", which enable computed properties.

For compatibility reasons, classes are still old-style by default. New-style classes are created by specifying another new-style class (i.e. a type) as a parent class, or the "top-level type" object if no other parent is needed. The behaviour of new-style classes differs from that of old-style classes in a number of important details in addition to what type returns. Some of these changes are fundamental to the new object model, like the way special methods are invoked. Others are "fixes" that could not be implemented before for compatibility concerns, like the method resolution order in case of multiple inheritance.

The plan is to eventually drop old-style classes, leaving only the semantics of new-style classes. This change will probably only be feasible in Python 3.0. new-style classic old-style

link|flag
would you mind providing an example? – Tom Sep 12 '08 at 7:03
vote up 0 vote down

Declaration-wise:

New-style classes inherit from object.

class NewStyleClass(object):
    pass

Old-style classes don't.

class OldStyleClass():
    pass
link|flag
vote up 0 vote down

In the first answer, there is a missing "is":

A new-style class neither more nor less

should be:

A new-style class is neither more nor less

link|flag
2  
This should be a comment! – Cide Jul 30 at 6:44
vote up 1 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 7 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.