What is the purpose of subclassing the class "object" in Python?

Posted by ignoramus on Stack Overflow See other posts from Stack Overflow or by ignoramus
Published on 2010-04-06T21:54:50Z Indexed on 2010/04/06 22:03 UTC
Read the original article Hit count: 186

Filed under:
|

All the Python built-ins are subclasses of object and I come across many user-defined classes which are too. Why? What is the purpose of the class object? It's just an empty class, right?

© Stack Overflow or respective owner

Related posts about python

Related posts about objects