✏️ 正在编辑: __init__.py
路径:
/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__init__.py
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
from textwrap import dedent try: from .file_cache import FileCache except ImportError: notice = dedent(''' NOTE: In order to use the FileCache you must have lockfile installed. You can install it via pip: pip install lockfile ''') print(notice) try: import redis from .redis_cache import RedisCache except ImportError: pass
💾 保存文件
← 返回文件管理器