Files
2019-02-08 15:13:17 +00:00

11 lines
127 B
Python

class OK:
def __eq__(self, other):
return False
class NotOK2:
def __ne__(self, other):
return True