This file is indexed.

/usr/share/doc/pyro4/examples/unixdomainsock/client.py is in pyro4-examples 4.23-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
from __future__ import print_function
import sys
import Pyro4

if sys.version_info<(3,0):
    input=raw_input


uri=input("enter the server uri: ").strip()
with Pyro4.Proxy(uri) as p:
    response=p.message("Hello there!")
    print("Response was:",response)