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

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

6 statements  

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__)