This file is indexed.

/usr/share/pyshared/zc/buildout/testrecipes.py is in python-zc.buildout 1.7.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
class Debug:

    def __init__(self, buildout, name, options):
        self.buildout = buildout
        self.name = name
        self.options = options

    def install(self):
        items = self.options.items()
        items.sort()
        for option, value in items:
            print "  %s=%r" % (option, value)
        return ()

    update = install