index
:
micropython
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
tests
/
basics
/
is_isnot.py
blob: 55459cb0a610e5c9ddf9c85080738c010fe39a3e (
plain
) (
blame
)
1
2
3
4
print([1, 2] is [1, 2]) a = [1, 2] b = a print(b is a)