I have two classes defined in a module classes.py:
classes.py
class ClassA(object): pass class ClassB(object): pass
And in another m
You're comparing the type of the class object, which are all of type 'type'.
'type'
If you just want to compare the classes, compare them directly:
print Class3 == Class4