Files
RustPython/benches/microbenchmarks/exception_nested.py
2020-12-13 17:06:21 +00:00

8 lines
140 B
Python

try:
try:
raise ValueError()
except ValueError as e:
raise RuntimeError() from e
except RuntimeError as e:
pass