Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# test builtin delattr
try:
delattr
except:
print("SKIP")
raise SystemExit
class A: pass
a = A()
a.x = 1
print(a.x)
delattr(a, 'x')
a.x
except AttributeError:
print('AttributeError')