summaryrefslogtreecommitdiff
path: root/tests/basics/special_methods2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/special_methods2.py')
-rw-r--r--tests/basics/special_methods2.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/basics/special_methods2.py b/tests/basics/special_methods2.py
index 09e43fff2..31f330ab4 100644
--- a/tests/basics/special_methods2.py
+++ b/tests/basics/special_methods2.py
@@ -129,12 +129,3 @@ print(dir(cud1))
# test that dir() does not delegate to __dir__ for the type
print('a' in dir(Cud))
-
-# TODO: the following operations are not supported on every ports
-#
-# ne is not supported, !(eq) is called instead
-#cud1 != cud2
-#
-# in the following test, cpython still calls __eq__
-# cud3=cud1
-# cud3==cud1