`shlex.push_source()` fails to reset lexer state, causing new stream to be ignored if called after EOF
未关闭
还没有人认领这个 Issue。
stdlib
type-bug
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
Calling shlex.push_source() after the current input has reached EOF leaves the lexer in state == None, so the newly pushed source is never read. Subsequent get_token() calls immediately return EOF instead of consuming the new input.
from shlex import shlex
lexer = shlex('a')
print(lexer.get_token())
print(lexer.get_token()) # EOF -> state is None
lexer.push_source('b', None)
print(lexer.get_token()) # actural '' (EOF), expected: 'b'
a
CPython versions tested on:
3.12
Operating systems tested on:
Linux
Linked PRs
gh-144560- gh-150172
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从入口点 shlex.shlex 开始,复现所报告的序列:将初始输入消费到 EOF,调用 push_source('b', None),然后读取下一个 token。完成的标志是新推入的 source 被消费,而不是返回 EOF;为此序列添加或更新回归覆盖,并运行相关的 shlex 测试。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- cli
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 35/100