Damien George
3ae78e803b
tests/basics: Remove __index__ and __inv__ from special methods tests.
...
MicroPython does not support these special methods, and they may get in the
way of other tests (eg indexing with __int__).
Signed-off-by: Damien George <damien@micropython.org>
2023-06-01 13:01:07 +10:00
Damien George
c410a86814
tests/basics: Enable == and != special-method tests now that they work.
...
These work since 3aab54bf43
Signed-off-by: Damien George <damien@micropython.org>
2020-09-18 18:40:42 +10:00
Damien George
fe4e1fe4b9
tests/basics: Add test for matmul operator.
...
This is a Python 3.5 feature so the .exp file is needed.
2019-09-26 15:15:34 +10:00
Paul Sokolovsky
d4d4bc5827
tests/basics/special_methods2: Typo fix in comment.
2018-12-13 01:29:01 +11:00
Damien George
7541be5637
tests/basics/special_methods2: Enable some additional tests that work.
...
These special methods are all available if MICROPY_PY_ALL_SPECIAL_METHODS
is enabled.
2018-05-11 17:37:16 +10:00
Damien George
3678a6bdc6
py/modbuiltins: Make built-in dir support the __dir__ special method.
...
If MICROPY_PY_ALL_SPECIAL_METHODS is enabled then dir() will now delegate
to the special method __dir__ if the object it is listing has this method.
2018-05-10 23:14:23 +10:00
Paul Sokolovsky
a2803b74f4
tests/basics: Convert "sys.exit()" to "raise SystemExit".
2017-06-10 20:03:01 +03:00
Paul Sokolovsky
f980c70997
tests/basic/: Make various tests skippable.
...
To run the testsuite on small ports.
2017-02-15 18:11:16 +03:00