Speed up import rlcompleter by deferring inspect and re
未關閉
還沒有人認領這個 Issue。
performance
stdlib
type-feature
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
rlcompleter imports inspect and re at module scope, but neither is needed to import the module or to construct a Completer. Each is used in exactly one completion method:
inspect: only inCompleter._callable_postfixre: only inCompleter.attr_matches
inspect in particular is a heavy import: it transitively pulls in dis, tokenize, and more. Because rlcompleter is imported during interactive startup (to set up tab completion via readline), this import cost is paid on every interactive session and every import rlcompleter, even though the completion methods may never run.
Linked PRs
- gh-156364
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 rlcompleter 模組以及 issue 中提到的 Completer._callable_postfix 和 Completer.attr_matches 進入點開始。驗證變更前後的匯入行為,並確認即使匯入 rlcompleter 不再為未使用的相依套件付出代價,補全行為仍然正確。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- cli, developer-experience
- Issue 類型
- 重構
- 難度
- 2/5
- 預估耗時
- 1-3 小時
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 35/100