This commit is contained in:
Pradyun S. Gedam 2017-06-16 12:14:25 +05:30
parent 29df9244f2
commit dc8f5825fd
3 changed files with 3 additions and 4 deletions

View File

@ -1,17 +1,17 @@
"""Cache Management
"""
import os
import errno
import logging
import os
from pip._vendor.packaging.utils import canonicalize_name
import pip.index
from pip.compat import expanduser
from pip.download import path_to_url
from pip.wheel import Wheel, InvalidWheelFilename
from pip.utils.cache import get_cache_path_for_link
from pip.wheel import InvalidWheelFilename, Wheel
logger = logging.getLogger(__name__)

View File

@ -24,7 +24,6 @@ from pip.locations import (
)
from pip.utils import ensure_dir, enum
logger = logging.getLogger(__name__)

View File

@ -1,8 +1,8 @@
"""Helpers for caches
"""
import os.path
import hashlib
import os.path
def get_cache_path_for_link(cache_dir, link):