I see some similar questions about this topic, but i wish to be sure, so i am asking...
What is the difference between:
class MyClass: pass
Class declarations of the type class MyClass(object) are New Style classes on Python 2.x
class MyClass(object)
Guido writes about some of the thinking that brought about the new classes in the History of Python