You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
288 B
23 lines
288 B
# 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')
|
|
|