This file is indexed.

/usr/share/doc/python-htmltmpl/examples/test/escape.py is in python-htmltmpl 1.22-10.

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
#!/usr/bin/env python

TEST = "escape"
execfile("head.inc")

#######################################################

tproc.set("title", "Template world.")
tproc.set("greeting", "Hello !")
tproc.set("data", '<TAG PARAM="foo"> &entita; </TAG>')

#######################################################

execfile("foot.inc")