2014-04-08 18:02:24 -04:00
|
|
|
class C:
|
|
|
|
def f():
|
|
|
|
pass
|
|
|
|
|
2014-04-08 16:32:29 -04:00
|
|
|
# del a class attribute
|
|
|
|
|
|
|
|
del C.f
|
|
|
|
try:
|
|
|
|
print(C.x)
|
|
|
|
except AttributeError:
|
|
|
|
print("AttributeError")
|
|
|
|
try:
|
|
|
|
del C.f
|
|
|
|
except AttributeError:
|
|
|
|
print("AttributeError")
|
|
|
|
|
|
|
|
# del an instance attribute
|
|
|
|
|
|
|
|
c = C()
|
|
|
|
|
|
|
|
c.x = 1
|
|
|
|
print(c.x)
|
|
|
|
|
|
|
|
del c.x
|
|
|
|
try:
|
|
|
|
print(c.x)
|
|
|
|
except AttributeError:
|
|
|
|
print("AttributeError")
|
|
|
|
try:
|
|
|
|
del c.x
|
|
|
|
except AttributeError:
|
|
|
|
print("AttributeError")
|
2018-02-06 23:44:29 -05:00
|
|
|
|
|
|
|
# try to del an attribute of a built-in class
|
|
|
|
try:
|
|
|
|
del int.to_bytes
|
|
|
|
except (AttributeError, TypeError):
|
|
|
|
# uPy raises AttributeError, CPython raises TypeError
|
|
|
|
print('AttributeError/TypeError')
|