Comment 4 for bug 392493

Revision history for this message
Andrea Corbellini (andrea.corbellini) wrote :

New style classes can be used with Python 2.4. The only thing to do is to inherit from ``object``:

    class NewStyleClass(object):
        # Some code...