Is it necessary or useful to inherit from Python’s object in Python 3.x? [duplicate]

You don’t need to inherit from object to have new style in python 3. All classes are new-style.

Leave a Comment