This file is indexed.

/usr/share/pyshared/twisted/web/__init__.py is in python-twisted-web 12.0.0-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
17
18
19
20
21
# -*- test-case-name: twisted.web.test -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Twisted Web: a L{web server<twisted.web.server>} (including an
L{HTTP implementation<twisted.web.http>} and a
L{resource model<twisted.web.resource>}) and
a L{web client<twisted.web.client>}.
"""

from twisted.web._version import version
from twisted.python.versions import Version
from twisted.python.deprecate import deprecatedModuleAttribute

__version__ = version.short()

deprecatedModuleAttribute(
    Version('Twisted', 11, 1, 0),
    "Google module is deprecated. Use Google's API instead",
    __name__, "google")