10000 gh-112075: Adapt more dict methods to Argument Clinic by DinoV · Pull Request #114256 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-112075: Adapt more dict methods to Argument Clinic #114256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jan 23, 2024
Prev Previous commit
Next Next commit
Update Objects/dictobject.c
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
DinoV and erlend-aasland authored Jan 23, 2024
commit 8629b177a5c1c43b7c3c5963d8f91d16a79f00c2
2 changes: 1 addition & 1 deletion Objects/dictobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -3508,7 +3508,7 @@ dict_setdefault_impl(PyDictObject *self, PyObject *key,
/*[clinic input]
dict.clear

Removes all items.
Remove all items from the dict.
[clinic start generated code]*/

static PyObject *
Expand Down
0