This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/026-repeat-variable.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
 9
10
11
12
13
<div xmlns="http://www.w3.org/1999/xhtml"
     xmlns:tal="http://xml.zope.org/namespaces/tal">
  <ul>
    <li tal:attributes="class repeat['i'].even()+repeat['i'].odd()" name="${i}-${repeat.i.index}" tal:repeat="i range(3)"><span tal:replace="i" /></li>
  </ul>
  <ul>
    <li tal:attributes="class repeat['i'].even+repeat['i'].odd"
        tal:repeat="i range(3)"><span tal:replace="i" /></li>
  </ul>
  <ul>
    <li tal:repeat="i range(3)"><span tal:condition="repeat['i'].even" tal:replace="repeat['i'].even" /><span tal:condition="repeat['i'].odd" tal:replace="repeat['i'].odd" /></li>
  </ul>
</div>