Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-08 06:22 +0000

1""" 

2oauthlib.oauth2.rfc6749 

3~~~~~~~~~~~~~~~~~~~~~~~ 

4 

5This module is an implementation of various logic needed 

6for consuming and providing OAuth 2.0 RFC6749. 

7""" 

8import functools 

9import logging 

10 

11from .endpoints.base import BaseEndpoint, catch_errors_and_unavailability 

12from .errors import ( 

13 FatalClientError, OAuth2Error, ServerError, TemporarilyUnavailableError, 

14) 

15 

16log = logging.getLogger(__name__)