This file is indexed.

/usr/share/doc/pyro/examples/tlstest/client.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
19
20
21
22
23
24
25
26
27
import Pyro.core

uri=raw_input("paste uri:")
obj1=Pyro.core.getProxyForURI(uri)
obj1._setOneway("oneway")
obj2=Pyro.core.getProxyForURI(uri)
obj2._setOneway("oneway")
print "obj1.ping"
obj1.ping()
print "obj1.ping"
obj1.ping()
print "obj2.ping"
obj2.ping()
print "obj2.ping"
obj2.ping()
print "obj1.oneway"
obj1.oneway()
print "obj1.oneway"
obj1.oneway()
print "obj2.oneway"
obj1.oneway()
print "obj2.oneway"
obj1.oneway()
print "obj1.comcall"
print "usernames=",obj1.comcall()
print "obj2.comcall"
print "usernames=",obj2.comcall()