mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00
24 lines
288 B
Python
24 lines
288 B
Python
# test builtin delattr
|
|
try:
|
|
delattr
|
|
except:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
class A: pass
|
|
a = A()
|
|
a.x = 1
|
|
print(a.x)
|
|
|
|
delattr(a, 'x')
|
|
|
|
try:
|
|
a.x
|
|
except AttributeError:
|
|
print('AttributeError')
|
|
|
|
try:
|
|
delattr(a, 'x')
|
|
except AttributeError:
|
|
print('AttributeError')
|