This file is indexed.

/usr/share/pyshared/enzyme/compat.py is in python-enzyme 0.4.1-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
# -*- coding: utf-8 -*-
import sys


_ver = sys.version_info
is_py3 = _ver[0] == 3
is_py2 = _ver[0] == 2


if is_py2:
    bytes = lambda x: chr(x[0])  # @ReservedAssignment
elif is_py3:
    bytes = bytes  # @ReservedAssignment