Rust Python interpreter crashes when rebinding __repr__ as __str__. ``` class Foo(object): pass Foo.__repr__ = Foo.__str__ foo = Foo() str(foo) ``` Actual output: > Segmentation fault (core dumped) System: > Ubuntu 16.04 > Rust Python 0.1.2 interpreter
Rust Python interpreter crashes when rebinding repr as str.
Actual output:
System: