8000 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 278a995f20fd6d35bc3270f936e6afb02fcee8e5
2 changes: 1 addition & 1 deletion Objects/dictobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -5449,7 +5449,7 @@ PyTypeObject PyDictValues_Type = {
/*[clinic input]
dict.values

Returns an object providing a view on the dict's values.
Return an object providing a view on the dict's values.
[clinic start generated code]*/

static PyObject *
Expand Down
0