The error messages of `dict()` and `dict().update()` should say `positional argument` instead of only `argument`
未關閉
@serhiy-storchaka 已經在處理了。
開始於 2025年8月26日。
interpreter-core
type-bug
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 35.9k
- PR 合併指標
- PR 指標待擷取
描述
Setting 2 positional arguments to dict() and dict().update() gets the error messages saying only argument as shown below:
dict('John', 36)
dict().update('John', 36)
# Error
TypeError: dict expected at most 1 argument, got 2
TypeError: update expected at most 1 argument, got 2
But the error messages should say positional argument instead of only argument as shown below:
TypeError: dict expected at most 1 positional argument, got 2
TypeError: update expected at most 1 positional argument, got 2
Because setting 2 keyword arguments to dict() works as shown below:
dict(name='John', age=36)
dict().update(name='John', age=36)
# No error
Linked PRs
- gh-137721
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
評估
這個 Issue 還沒有評估資料。