This file is indexed.

/usr/lib/python3/dist-packages/social/apps/django_app/__init__.py is in python3-social-auth 1:0.2.21+dfsg-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
10
11
12
13
14
15
16
17
18
19
20
21
"""
Django framework support.

To use this:
  * Add 'social.apps.django_app.default' if using default ORM,
    or 'social.apps.django_app.me' if using mongoengine
  * Add url('', include('social.apps.django_app.urls', namespace='social')) to
    urls.py
  * Define SOCIAL_AUTH_STORAGE and SOCIAL_AUTH_STRATEGY, default values:
    SOCIAL_AUTH_STRATEGY = 'social.strategies.django_strategy.DjangoStrategy'
    SOCIAL_AUTH_STORAGE = 'social.apps.django_app.default.models.DjangoStorage'
"""
import django


if django.VERSION[0] == 1 and django.VERSION[1] < 7:
    from social.strategies.utils import set_current_strategy_getter
    from social.apps.django_app.utils import load_strategy
    # Set strategy loader method to workaround current strategy getter needed on
    # get_user() method on authentication backends when working with Django
    set_current_strategy_getter(load_strategy)