3.14.0a1 urljoin regression wrt //
未关闭
还没有人认领这个 Issue。
3.14
stdlib
type-bug
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 36k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
The tests of lxml do (simplified):
from urllib.parse import urljoin
urljoin('file:', '/foo/bar')
- On Python 3.13.0 and earlier, the result of the urljoin call is
file:///foo/bar. - On Python 3.14.0a1, the result of the urljoin call is
file:/foo/bar.
This change of behavior was introduced in fc897fcc01964649f023e0baa4c95d142e4e8a10 https://github.com/python/cpython/pull/123273 cc @serhiy-storchaka
The NEWS entry in that change does not seem to indicate this change was intentional.
CPython versions tested on:
3.14, CPython main branch
Operating systems tested on:
Linux
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 urllib.parse.urljoin 开始,检查 fc897fcc01964649f023e0baa4c95d142e4e8a10 引入的行为变化。在 Python 3.14 上复现 lxml 风格的示例,并确认完成的修复会为 urljoin('file:', '/foo/bar') 恢复 file:///foo/bar,同时不会使报告的变化发生回归。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- networking
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 45/100