platform.libc_ver() raises TypeError on a threaded libc without a version
未关闭
还没有人认领这个 Issue。
stdlib
type-bug
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
platform.libc_ver() raises TypeError when it scans a binary that references
a threaded C library (such as libc_r) with no version number:
>>> platform.libc_ver(executable=some_binary_referencing_libc_r_so)
Traceback (most recent call last):
...
TypeError: 'NoneType' object is not subscriptable
In the so branch of the scanning loop, when a match has a thread suffix
(_r/_pthread) but no version, ver is still None and gets subscripted.
This is a regression from gh-90548 (PR #131313), so 3.14 and later are affected.
CPython versions tested on:
3.16 (main)
Operating systems tested on:
Linux, macOS
Linked PRs
- gh-155455
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从扫描循环中的 platform.libc_ver() 及其 so 分支开始,然后在进行更改之前查看相关的 PR gh-155455。使用一个引用了无版本线程化 C 库的二进制文件重现该情况,并在调用不再引发所报告的 TypeError 时认为问题已解决。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- operating-systems
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 30/100