diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-18 23:35:24 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-18 23:35:24 +0100 |
commit | 561f83c9cf62b6470637dfbd51471db63fe5c28d (patch) | |
tree | 3b411eff835bec291095c823655698ee43c8849e /tests/basics | |
parent | 38ae014e4258811d1612f9e140a35f8f9aa0ddb8 (diff) | |
parent | 0fc4775cd6e13360bfd622602b50de900dac6617 (diff) | |
download | micropython-561f83c9cf62b6470637dfbd51471db63fe5c28d.tar.gz micropython-561f83c9cf62b6470637dfbd51471db63fe5c28d.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests/basics')
-rw-r--r-- | tests/basics/tuple_compare.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/basics/tuple_compare.py b/tests/basics/tuple_compare.py index 8bdb2bcf98..ad813f7029 100644 --- a/tests/basics/tuple_compare.py +++ b/tests/basics/tuple_compare.py @@ -48,3 +48,8 @@ print((1,) <= (1, 0,)) print((1,) <= (1, -1,)) print((1, 0,) <= (1,)) print((1, -1,) <= (1,)) + +print((10, 0) > (1, 1)) +print((10, 0) < (1, 1)) +print((0, 0, 10, 0) > (0, 0, 1, 1)) +print((0, 0, 10, 0) < (0, 0, 1, 1)) |