This file is indexed.

/usr/lib/x86_64-linux-gnu/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl is in gobject-introspection 1.56.1-1.

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
<%inherit file="/base.tmpl"/>
<%block name="details">
% if node.members:
<terms>
% for member in node.members:
<item>
<title><code>${node.name}.${member.name.upper()}</code></title>
${formatter.format(node, member.doc)}
</item>
% endfor
</terms>
% endif
</%block>