This file is indexed.

/usr/lib/python3/dist-packages/wsproto/compat.py is in python3-wsproto 0.11.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
# flake8: noqa

import sys


PY2 = sys.version_info.major == 2
PY3 = sys.version_info.major == 3


if PY3:
    unicode = str

    def Utf8Validator():
        return None
else:
    unicode = unicode
    try:
        from wsaccel.utf8validator import Utf8Validator
    except ImportError:
        from .utf8validator import Utf8Validator