This file is indexed.

/usr/share/pyshared/z3c/pt/loader.py is in python-z3c.pt 2.1.5-0ubuntu2.

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
from z3c.pt.pagetemplate import PageTemplateFile

from chameleon import loader


class TemplateLoader(loader.TemplateLoader):
    def load_page(self, filename):
        return self.load(filename, PageTemplateFile)