Suppose I create two instances of class object
. Are these two instances guaranteed to be not equal to each other? In other words, is object() == object()
guaranteed to be False
, or is it implementation-dependent?
I understand that object() is object()
is guaranteed to be False
, but here I am asking about object() == object()
.