Search Results

3
votes

Is there any difference between “foo is None” and “foo == None”?

For None there shouldn't be a difference between equality (==) and identity (is). The NoneType probably returns identity for equality. Since None is the only instance you can make of NoneType (I th …