Y
Hacker News
new
|
ask
|
show
|
jobs
by
pansa2
2209 days ago
Classes can overload `==`:
class C: def __eq__(self, other): return True print(C() == None) # True print(C() is None) # False