This file is indexed.

/usr/lib/python2.7/dist-packages/nose_parameterized/compat.py is in python-nose-parameterized 0.3.4-3.

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
"""
A stripped down version of six.py, containing only the bits we actually need.
Kept minimal so that OS package maintainers don't need to patch out six.py.
"""

import sys

PY3 = sys.version_info[0] == 3

if PY3:
    string_types = str,
else:
    string_types = basestring,