New-style classes

The class concept was redesigned in Python v2.2
We have new-style (v2.2) and classic classes
New-style classes add some convenient functionality to classic classes
New-style classes must be derived from the object base class:
class MyBase(object):
    # the rest of MyBase is as before

previousnexttable of contents