This file is indexed.

/usr/lib/python2.7/dist-packages/guardian/testapp/tests/__init__.py is in python-django-guardian 1.2.4+git20141127-0.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
13
14
15
16
17
18
19
20
21
22
23
from __future__ import unicode_literals
import django
from django.conf import settings

from .conf_test import *
from .core_test import *
from .custompkmodel_test import *
from .decorators_test import *
from .direct_rel_test import *
from .forms_test import *
from .managers_test import *
from .management_test import *
from .orphans_test import *
from .other_test import *
from .utils_test import *
from .shortcuts_test import *
from .tags_test import *


if 'django.contrib.admin' in settings.INSTALLED_APPS:
    from .admin_test import *
if django.VERSION >= (1, 3):
    from .mixins_test import *