summaryrefslogtreecommitdiff
path: root/tests/basics/special_comparisons2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/special_comparisons2.py')
-rw-r--r--tests/basics/special_comparisons2.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/basics/special_comparisons2.py b/tests/basics/special_comparisons2.py
new file mode 100644
index 000000000..c29dc72ce
--- /dev/null
+++ b/tests/basics/special_comparisons2.py
@@ -0,0 +1,31 @@
+class E:
+ def __repr__(self):
+ return "E"
+
+ def __eq__(self, other):
+ print('E eq', other)
+ return 123
+
+class F:
+ def __repr__(self):
+ return "F"
+
+ def __ne__(self, other):
+ print('F ne', other)
+ return -456
+
+print(E() != F())
+print(F() != E())
+
+tests = (None, 0, 1, 'a')
+
+for val in tests:
+ print('==== testing', val)
+ print(E() == val)
+ print(val == E())
+ print(E() != val)
+ print(val != E())
+ print(F() == val)
+ print(val == F())
+ print(F() != val)
+ print(val != F())