module PyORBit { interface TestCall { // self.op1 calls other.op2 which calls self.op3 void op1(in TestCall other); void op2(in TestCall other); void op3(); }; };