mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
uint types in viper mode can now be used for all binary operators except floor-divide and modulo. Fixes issue #1847 and issue #6177. Signed-off-by: Damien George <damien@micropython.org>
7 lines
77 B
Plaintext
7 lines
77 B
Plaintext
1 1 == <= >=
|
|
2 1 > >= !=
|
|
1 2 < <= !=
|
|
2 -1 < <= !=
|
|
-2 1 > >= !=
|
|
-2 -1 < <= !=
|