8000 Docs: Argument Clinic: Add Background and Tutorial top-level sections by erlend-aasland · Pull Request #106904 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Docs: Argument Clinic: Add Background and Tutorial top-level sections #106904

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 6 commits into from
Jul 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove spurious change
  • Loading branch information
erlend-aasland committed Jul 19, 2023
commit de4490759dd4f2cc0049ad8157ee4c5bd30433c2
2 changes: 1 addition & 1 deletion Doc/howto/clinic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Argument Clinic's primary goal
is to take over responsibility for all argument parsing code
inside CPython. This means that, when you convert a function
to work with Argument Clinic, that function should no longer
do any of its own argument parsing -- the code generated by
do any of its own argument parsingthe code generated by
Argument Clinic should be a "black box" to you, where CPython
calls in at the top, and your code gets called at the bottom,
with ``PyObject *args`` (and maybe ``PyObject *kwargs``)
Expand Down
0