This file is indexed.

/usr/lib/python3/dist-packages/flake8_polyfill/version.py is in python3-flake8-polyfill 1.0.2-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
"""Version information for Flake8 2.x and 3.x."""

import flake8

version_info = getattr(flake8, '__version_info__', None)
if version_info is None:
    version_info = tuple(
        int(i) for i in flake8.__version__.split('.') if i.isdigit()
    )