In the following example, we define a class error, and instance it. When we execute raise e from e, Rust Python crashes.
test.py
class Error(Exception):
pass
e = Error()
raise e from e
Actual output:
Segmentation fault (core dumped)
System:
Ubuntu 16.04
Rust Python 0.1.2 interpreter
In the following example, we define a class error, and instance it. When we execute raise e from e, Rust Python crashes.
test.py
Actual output:
System: