This file is indexed.

/usr/lib/python2.7/dist-packages/stringtemplate3/__init__.py is in python-stringtemplate3 3.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
14
15
16
__all__ = ['language']

__version__ = "3.1"

## track probable issues like setting attribute that is not referenced.
#  Set to true to make StringTemplate check your work as it evaluates
#  templates.  Problems are sent to error listener.  Currently warns when
#  you set attributes that are not used.
lintMode = False

from stringtemplate3.errors import *
from stringtemplate3.writers import *
from stringtemplate3.templates import *
from stringtemplate3.groups import *
from stringtemplate3.interfaces import *
from stringtemplate3.grouploaders import *