This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/090-tuple-expression.pt is in python-chameleon 2.16-4.

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
<ul tal:define="items ('main', 'Welcome'),
                      ('listings', 'Listings'),
                      ('about', 'About'),
                      ('contact', 'Contact')">
  <li tal:repeat="(route, title) items">
    <a href="#${route}" id="${route}nav">${title}</a>
  </li>
</ul>