This file is indexed.

/usr/lib/python3/dist-packages/klein/__init__.py is in python3-klein 17.2.0-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
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from __future__ import absolute_import, division

from klein.app import Klein, run, route, resource
from klein._plating import Plating

from ._version import __version__ as _incremental_version

# Make it a str, for backwards compatibility
__version__ = _incremental_version.base()

__author__  = "The Klein contributors (see AUTHORS)"
__license__ = "MIT"
__copyright__ = "Copyright 2016 {0}".format(__author__)

__all__ = [
    'Klein',
    'Plating',
    '__author__',
    '__copyright__',
    '__license__',
    '__version__',
    'resource',
    'route',
    'run',
]