The following code segfaults (you have to install rllab first). ```python import ray import rllab.misc.ext ray.init() @ray.actor class Foo(object): def __init__(self): super().__init__() Foo() ```