diff options
author | Damien George <damien.p.george@gmail.com> | 2019-07-25 13:17:31 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-09-26 15:15:34 +1000 |
commit | fe4e1fe4b907e24af2ff566bdbc2edc49db28dce (patch) | |
tree | f53315d6d8a8abd2061ae7a485834c4282b55f36 /tests/basics/special_methods2.py | |
parent | 2069c563f9e944d8f45e524b425fff23208e8153 (diff) | |
download | micropython-fe4e1fe4b907e24af2ff566bdbc2edc49db28dce.tar.gz micropython-fe4e1fe4b907e24af2ff566bdbc2edc49db28dce.zip |
tests/basics: Add test for matmul operator.
This is a Python 3.5 feature so the .exp file is needed.
Diffstat (limited to 'tests/basics/special_methods2.py')
-rw-r--r-- | tests/basics/special_methods2.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/special_methods2.py b/tests/basics/special_methods2.py index c72c8cf00f..09e43fff29 100644 --- a/tests/basics/special_methods2.py +++ b/tests/basics/special_methods2.py @@ -111,6 +111,7 @@ except TypeError: -cud1 ~cud1 cud1 * cud2 +cud1 @ cud2 cud1 / cud2 cud2 // cud1 cud1 += cud2 |