I always thought operator is
determined if the given variable is of the given type. But I just determined it was not true:
>>> class A():
pass
...
>>> a = A()
>>> a is A
False
How do I test if a
is of type class A
?
Please advise.
Thanks, Boda Cydo.