This file is indexed.

/usr/share/doc/python-pyorbit/examples/c-inproc/testcall.idl is in python-pyorbit 2.24.0-6ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
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();
  };
};