This file is indexed.

/usr/share/doc/python-pyorbit/examples/everything_inprocess.py is in python-pyorbit 2.24.0-7.

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
 9
10
11
12
13
14
15
16
17
18
19
'''Simple test case that jams everything_server and everything_client together
so that they run in the same address space.'''

import sys, unittest
import ORBit, CORBA

import everything_server

orb = CORBA.ORB_init(sys.argv)
factory_servant = everything_server.MyFactory()
factory_objref  = factory_servant._this()
factory_servant._default_POA().the_POAManager.activate()

import everything_client
everything_client.factory = factory_objref

EverythingTestCase = everything_client.EverythingTestCase

unittest.main()