This file is indexed.

/usr/lib/python3/dist-packages/flake8/compat.py is in python3-flake8 2.5.4-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
# -*- coding: utf-8 -*-
"""Compatibility shims for Flake8."""
import os.path
import sys


def relpath(path, start='.'):
    """Wallpaper over the differences between 2.6 and newer versions."""
    if sys.version_info < (2, 7) and path.startswith(start):
        return path[len(start):]
    else:
        return os.path.relpath(path, start=start)