forked from Rust-related/RustPython
8 lines
140 B
Python
8 lines
140 B
Python
try:
|
|
try:
|
|
raise ValueError()
|
|
except ValueError as e:
|
|
raise RuntimeError() from e
|
|
except RuntimeError as e:
|
|
pass
|