Use the built in support for os.path.samefile

This commit is contained in:
Donald Stufft 2017-03-18 13:41:16 -04:00
parent 28d4954a50
commit 23b03de81a
2 changed files with 2 additions and 13 deletions

View File

@ -20,7 +20,7 @@ except ImportError:
__all__ = [
"ipaddress", "uses_pycache", "console_to_str", "native_str",
"get_path_uid", "stdlib_pkgs", "WINDOWS", "samefile",
"get_path_uid", "stdlib_pkgs", "WINDOWS",
]
@ -111,13 +111,3 @@ stdlib_pkgs = {"python", "Wsgiref", "argparse"}
# windows detection, covers cpython and ironpython
WINDOWS = (sys.platform.startswith("win") or
(sys.platform == 'cli' and os.name == 'nt'))
def samefile(file1, file2):
"""Provide an alternative for os.path.samefile on Windows/Python2"""
if hasattr(os.path, 'samefile'):
return os.path.samefile(file1, file2)
else:
path1 = os.path.normcase(os.path.abspath(file1))
path2 = os.path.normcase(os.path.abspath(file2))
return path1 == path2

View File

@ -4,7 +4,6 @@ import logging
import tempfile
import os.path
from pip.compat import samefile
from pip.exceptions import BadCommand
from pip._vendor.six.moves.urllib import parse as urllib_parse
from pip._vendor.six.moves.urllib import request as urllib_request
@ -238,7 +237,7 @@ class Git(VersionControl):
)
return None
# relative path of setup.py to repo root
if samefile(root_dir, location):
if os.path.samefile(root_dir, location):
return None
return os.path.relpath(location, root_dir)