This file is indexed.

/usr/lib/python2.7/dist-packages/compat/models.py is in python-django-compat 1.0.8-1ubuntu2.

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
try:
    from compat import GenericForeignKey
except ImportError:  # Django >= 1.9
    from django.contrib.contenttypes.fields import GenericForeignKey

# the tests will try to import these
__all__ = [
    'GenericForeignKey',
]