Tarfile regression
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
The function _get_filtered_attrs in tarfile.py references the special value os.path.ALLOW_MISSING. This is a problem because this value was only introduced in Python 3.14. However, the reference to this value has been backported to earlier supported Python versions. The result is that tarfile.py can throw an exception when being called from Python versions prior to 3.14.
File "/usr/local/lib/python3.12/tarfile.py", line 845, in data_filter
new_attrs = _get_filtered_attrs(member, dest_path, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/tarfile.py", line 770, in _get_filtered_attrs
dest_path = os.path.realpath(dest_path, strict=os.path.ALLOW_MISSING)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'posixpath' has no attribute 'ALLOW_MISSING'
In Python 3.12, the bug first appears in version 3.12.11.
In the Python 3.13 branch, the bug was introduced in 3.13.4, and persists in all subsequent versions.
In Python 3.11, it appears in all versions after and including 3.11.13
And in the Python 3.10 line, 3.10.18 is the first version where this value appears.
Personally, my symptom of this problem is that this bug prevents me from installing common libraries such as numpy because pip uses the tarfile library to unpack the download from PyPI.
CPython versions tested on:
3.12
Operating systems tested on:
Linux
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 tarfile.py 中的 _get_filtered_attrs 开始,然后在 3.14 之前的受支持 Python 版本上重现已报告的 data_filter 失败。验证 tarfile 操作不再因 os.path.ALLOW_MISSING 而引发 AttributeError,并确认已处理所报告的安装场景。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 52/100