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
/
bytecode
/
mp-tests
/
scope0.py
blob: 5d81345ea4ab1201b55bcb79b9c24e3f694666e1 (
plain
) (
blame
)
1
2
3
4
5
6
7
x = 1 print(x) # local store after load def f(): print(x) x = 1