This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/025-repeat-whitespace.pt is in python-chameleon 2.6.1-2.

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
<html>
  <body>
    <ul>
      <tal:item repeat="i (1, 2, 3)"><li tal:content="i" /></tal:item>
      <span tal:omit-tag="" tal:repeat="j (1, 2, 3)"><li tal:content="j" /></span>
      <tal:count>
        <tal:count-loop repeat="count (1, 2, 3)">
          <span tal:replace="count"
                /><tal:comma condition="not repeat['count'].end">,</tal:comma>
       </tal:count-loop>
      </tal:count>.
    </ul>
  </body>
</html>