8b27482692
See https://black.readthedocs.io/en/stable/the_black_code_style/index.html Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
13 lines
164 B
Python
13 lines
164 B
Python
import micropython
|
|
|
|
|
|
# unsigned ints
|
|
@micropython.viper
|
|
def viper_uint() -> uint:
|
|
return uint(-1)
|
|
|
|
|
|
import usys
|
|
|
|
print(viper_uint() == (usys.maxsize << 1 | 1))
|