PyREPL: ESC key in isearch mode has ambiguous prefix delay
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
This issue was noted from #145398. A bare Esc press in isearch mode (Ctrl-R) does not exit search. Instead, the first Esc appears to do nothing, only after pressing Esc a second time does isearch end.
To reproduce:
- Press
Ctrl-Rin PyREPL to enter isearch. - Press
Esconce to exit isearch.
- Expected: isearch ends immediately.
- Actual: nothing happens. Press
Escagain, isearch ends.
This is because BaseEventQueue.push() treats \x1b (ESC) as a prefix of longer escape sequences (arrows, function keys, etc.). When a single Esc is received, the event queue holds it and waits for the next byte to decide whether it’s a standalone Esc or the start of a longer sequence. If no further byte arrives, the Esc event is never delivered, and isearch remains active.
Apart from isearch mode, this behavior affects normal mode as well, where Esc also has a delay before it is recognized.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Windows
Linked PRs
- gh-154731
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 BaseEventQueue.push() 以及 Lib/_pyrepl/unix_eventqueue.py 和 Lib/_pyrepl/windows_eventqueue.py 中的转义序列定义开始。在进行更改之前,检查相关 PR gh-154731 和现有的 PyREPL 事件处理。完成的标准是:单独的 Esc 会立即退出 isearch,并且在普通模式下无需当前的延迟即可被识别。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- cli
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 25/100