configparser: BasicInterpolation raises TypeError interpolating a value-less option
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
With allow_no_value=True and the default BasicInterpolation, interpolating a reference to a value-less option raises TypeError instead of resolving or raising a configparser error. ExtendedInterpolation treats the missing value as empty in the same situation.
import configparser
cfg = configparser.ConfigParser(allow_no_value=True)
cfg.read_string("[s]\na\nb = x%(a)sy\n")
cfg.get("s", "b")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
cfg.get("s", "b")
~~~~~~~^^^^^^^^^^
File "../Lib/configparser.py", line 855, in get
return self._interpolation.before_get(self, section, option, value,
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
d)
^^
File "../Lib/configparser.py", line 433, in before_get
self._interpolate_some(parser, option, L, value, section, defaults, 1)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "../Lib/configparser.py", line 474, in _interpolate_some
if "%" in v:
^^^^^^^^
TypeError: argument of type 'NoneType' is not a container or iterable
The same pattern with ExtendedInterpolation (b = x${s:a}y) returns "xy".
ExtendedInterpolation._interpolate_some guards this (if v is None: continue, added in gh-130941); BasicInterpolation._interpolate_some does not and reaches if "%" in v: with v set to None (Lib/configparser.py).
Observed on 3.16.0a0.
CPython versions tested on:
CPython main branch
Operating systems tested on:
macOS
Linked PRs
- gh-153857
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 Lib/configparser.py 中的 BasicInterpolation._interpolate_some 开始,并按照报告中的描述,将其处理方式与 ExtendedInterpolation._interpolate_some 进行比较。确认无值选项的情况不再引发 TypeError,并遵循预期的插值行为;已链接的 PR gh-153857 表明相关工作已经在进行中。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 25/100