This file is indexed.

/usr/share/doc/pyro/examples/autoreconnect/server_no_ns.py is in pyro-examples 1:3.14-1.1.

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
# Autoreconnect server
# doesn't use the Name Server

import time, Pyro.core

class testobject(Pyro.core.ObjBase):
	def method(self,arg):
		print 'You can now try to stop this server with ctrl-C'
		time.sleep(1)

daemon = Pyro.core.Daemon()
object=testobject()
fixed_guid="a9fe57de0a3862c9b31b925b97a98d8a" # use some fixed random GUID
object.setGUID(fixed_guid)
daemon.connect(object,':test.autoreconnect')
print 'Fixed object guid =',fixed_guid
print 'Server started.'
daemon.requestLoop()