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