Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:48 +0000

1# SPDX-FileCopyrightText: 2015 Eric Larson 

2# 

3# SPDX-License-Identifier: Apache-2.0 

4 

5"""CacheControl import Interface. 

6 

7Make it easy to import from cachecontrol without long namespaces. 

8""" 

9__author__ = "Eric Larson" 

10__email__ = "eric@ionrock.org" 

11__version__ = "0.12.11" 

12 

13from .wrapper import CacheControl 

14from .adapter import CacheControlAdapter 

15from .controller import CacheController 

16 

17import logging 

18logging.getLogger(__name__).addHandler(logging.NullHandler())