This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/006-attribute-interpolation.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
<html>
  <body class="ltr" tal:define="hash string:#">
    <img src="${'#'}" alt="copyright (c) ${2010}" />
    <img src="" alt="copyright (c) ${2010}" tal:attributes="src string:$hash" />
    <img src="" alt="copyright (c) ${2010}" tal:attributes="src string:${hash}" />
    <img src="${None}" alt="$ignored" />
    <img src="" alt="${'%stype \'str\'%s' % (chr(60), chr(62))}" />
  </body>
</html>