1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/src/pip/_vendor/cachecontrol/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
676 B
Python
Raw Normal View History

2022-01-21 16:41:36 +01:00
# SPDX-FileCopyrightText: 2015 Eric Larson
#
# SPDX-License-Identifier: Apache-2.0
2014-04-24 13:20:51 +02:00
"""CacheControl import Interface.
Make it easy to import from cachecontrol without long namespaces.
"""
2018-06-21 14:59:26 +02:00
__author__ = "Eric Larson"
__email__ = "eric@ionrock.org"
2023-06-12 15:30:30 +02:00
__version__ = "0.13.1"
2023-06-02 19:56:56 +02:00
from pip._vendor.cachecontrol.adapter import CacheControlAdapter
from pip._vendor.cachecontrol.controller import CacheController
from pip._vendor.cachecontrol.wrapper import CacheControl
__all__ = [
"__author__",
"__email__",
"__version__",
"CacheControlAdapter",
"CacheController",
"CacheControl",
]
2022-01-21 16:41:36 +01:00
import logging
2023-06-02 19:56:56 +02:00
2022-01-21 16:41:36 +01:00
logging.getLogger(__name__).addHandler(logging.NullHandler())