You must log in or register to comment.
You’re right, though IIRC there’s no functional difference when comparing to None (other than speed).
Yes there is. One invokes
__ne__
on the left hand side, the other performs an identity comparison.
You’re right, though IIRC there’s no functional difference when comparing to None (other than speed).
Yes there is. One invokes __ne__
on the left hand side, the other performs an identity comparison.