Is there any reason for a class declaration to inherit object
?
I just found some code that does this and I can't find a good reason why.
class MyClass(object):
# class code follows...
The code is using swig for binding some C code to Python, if that's relevant.