blob: 4f02f9c1061bb74737ab104154757d8963f1ddfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
try:
raise ValueError(534)
except ValueError as e:
print(type(e), e.args)
# Var bound in except block is automatically deleted
try:
e
except NameError:
print("NameError")
|