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

10 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-02-26 06:33 +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.13.1" 

12 

13from pip._vendor.cachecontrol.adapter import CacheControlAdapter 

14from pip._vendor.cachecontrol.controller import CacheController 

15from pip._vendor.cachecontrol.wrapper import CacheControl 

16 

17__all__ = [ 

18 "__author__", 

19 "__email__", 

20 "__version__", 

21 "CacheControlAdapter", 

22 "CacheController", 

23 "CacheControl", 

24] 

25 

26import logging 

27 

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