Raname path -> module_path for clarity

This commit is contained in:
Bruno Oliveira 2024-04-06 12:27:04 -03:00
parent 34980949f3
commit 495a6a8d5f
1 changed files with 2 additions and 2 deletions

View File

@ -818,10 +818,10 @@ def is_importable(root: Path, module_path: Path) -> bool:
return spec_matches_module_path(spec, module_path)
def compute_module_name(root: Path, path: Path) -> str:
def compute_module_name(root: Path, module_path: Path) -> str:
"""Compute a module name based on a path and a root anchor."""
try:
path_without_suffix = path.with_suffix("")
path_without_suffix = module_path.with_suffix("")
except ValueError:
# Empty paths (such as Path.cwd()) might break meta_path hooks (like our own assertion rewriter).
return ""