micropython: add micropython component
This commit is contained in:
22
components/language/micropython/tests/basics/del_deref.py
Normal file
22
components/language/micropython/tests/basics/del_deref.py
Normal file
@@ -0,0 +1,22 @@
|
||||
def f():
|
||||
x = 1
|
||||
y = 2
|
||||
def g():
|
||||
nonlocal x
|
||||
print(y)
|
||||
try:
|
||||
print(x)
|
||||
except NameError:
|
||||
print("NameError")
|
||||
def h():
|
||||
nonlocal x
|
||||
print(y)
|
||||
try:
|
||||
del x
|
||||
except NameError:
|
||||
print("NameError")
|
||||
print(x, y)
|
||||
del x
|
||||
g()
|
||||
h()
|
||||
f()
|
Reference in New Issue
Block a user