This file is indexed.

/usr/lib/python3/dist-packages/websockets/__init__.py is in python3-websockets 3.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
# This relies on each of the submodules having an __all__ variable.

from .client import *
from .exceptions import *
from .protocol import *
from .server import *
from .uri import *

__all__ = (
    client.__all__
    + exceptions.__all__
    + protocol.__all__
    + server.__all__
    + uri.__all__
)

from .version import version as __version__                             # noqa