This file is indexed.

/usr/lib/python2.7/dist-packages/captcha/tests/urls.py is in python-django-captcha 0.5.1-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
from django.conf.urls import url, include
from .views import (
    test, test_model_form, test_custom_error_message, test_per_form_format, test_non_required, test_id_prefix
)

urlpatterns = [
    url(r'test/$', test, name='captcha-test'),
    url(r'test-modelform/$', test_model_form, name='captcha-test-model-form'),
    url(r'test2/$', test_custom_error_message, name='captcha-test-custom-error-message'),
    url(r'test3/$', test_per_form_format, name='test_per_form_format'),
    url(r'test-non-required/$', test_non_required, name='captcha-test-non-required'),
    url(r'test-id-prefix/$', test_id_prefix, name='captcha-test-id-prefix'),
    url(r'', include('captcha.urls')),
]