We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66e5e73 commit 11e3065Copy full SHA for 11e3065
src/pip/_internal/models/link.py
@@ -178,9 +178,9 @@ def _ensure_quoted_url(url: str) -> str:
178
return urllib.parse.urlunsplit(result._replace(path=path))
179
180
181
-def _absolute_link_url(base_url: str, file_url: str) -> str:
+def _absolute_link_url(base_url: str, url: str) -> str:
182
"""
183
- A faster implementation of urlib.parse.urljoin with a shortcut
+ A faster implementation of urllib.parse.urljoin with a shortcut
184
for absolute http/https URLs.
185
186
if file_url.startswith(("https://", "http://")):
0 commit comments