mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 12:05:32 -04:00
19 lines
231 B
Python
19 lines
231 B
Python
# del global
|
|
|
|
x = 1
|
|
print(x)
|
|
del x
|
|
try:
|
|
print(x)
|
|
except NameError:
|
|
print("NameError")
|
|
try:
|
|
del x
|
|
except: # NameError:
|
|
# FIXME uPy returns KeyError for this
|
|
print("NameError")
|
|
|
|
class C:
|
|
def f():
|
|
pass
|