This file is indexed.

/usr/share/paster_templates/webkit/+package+/wsgiapp.py_tmpl is in python-pastewebkit 1.0-7build1.

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
import os
from paste.webkit import wsgiapp

def make_app(
    global_conf,
    # Required configuration parameters (if any):
    **kw):
    return wsgiapp.make_webkit_app(
        global_conf,
        package_name='${package}',
        root_path=os.path.dirname(__file__),
        **kw)