19 lines
224 B
Python
19 lines
224 B
Python
# test builtin delattr
|
|
|
|
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')
|