Using multiple starred targets on the left side of `=` gets the error message saying "starred expressions" instead of "starred targets"
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
The doc says starred target as shown below:
*Memo:
- The doc also says
star_target.
If the target list contains one target prefixed with an asterisk, called a “starred” target:
But using multiple starred targets on the left side of = gets the error message saying starred expressions instead of starred targets as shown below:
*v1, *v2, *v3 = [0, 1, 2, 3, 4]
# Error
SyntaxError: multiple starred expressions in assignment
So, the error message should say starred targets as shown below:
SyntaxError: multiple starred targets in assignment
And, using a single starred target on the left side of = gets the error message saying starred assignment target as shown below:
*v = [0, 1, 2, 3, 4]
SyntaxError: starred assignment target must be in a list or tuple
So, the error message should say starred target as shown below:
SyntaxError: starred target must be in a list or tuple in assignment
CPython versions tested on:
3.12
Operating systems tested on:
Windows
Linked PRs
- gh-138283
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
issue 中沒有指定來源檔案或測試。先定位會發出兩個 assignment SyntaxErrors 的 CPython parser 或 compiler 入口點,接著檢視連結的 PR gh-138283;當訊息使用文件所記載的「starred target」措辭,且相關行為已由測試涵蓋時,即視為完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- compilers
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 25/100