This file is indexed.

/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints/pre_configured.py is in python3-oauthlib 2.0.6-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 __future__ import absolute_import, unicode_literals

from . import (AccessTokenEndpoint, AuthorizationEndpoint,
               RequestTokenEndpoint, ResourceEndpoint)


class WebApplicationServer(RequestTokenEndpoint, AuthorizationEndpoint,
                           AccessTokenEndpoint, ResourceEndpoint):

    def __init__(self, request_validator):
        RequestTokenEndpoint.__init__(self, request_validator)
        AuthorizationEndpoint.__init__(self, request_validator)
        AccessTokenEndpoint.__init__(self, request_validator)
        ResourceEndpoint.__init__(self, request_validator)