mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
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
|