Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# basic exceptions
x = 1
try:
x.a()
except:
print(x)
raise IndexError
except IndexError:
print("caught")