diff options
author | Damien George <damien@micropython.org> | 2020-09-17 13:26:24 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-09-18 18:40:42 +1000 |
commit | c410a86814abde8ce05aaf46383f38ef9f981a8c (patch) | |
tree | 0be3f871875fe2d526d6f39bfb668f9a86821f87 /tests/basics/special_methods2.py | |
parent | 8af9796b1642189f590520062b1a00e965d5985e (diff) |
tests/basics: Enable == and != special-method tests now that they work.
These work since 3aab54bf434e7f025a91ea05052f1bac439fad8c
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/basics/special_methods2.py')
-rw-r--r-- | tests/basics/special_methods2.py | 9 |
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 |