https://github.com/python/cpython/commit/5fa7f5a734ed252623fc2c92d872af6fdf2000c5 commit: 5fa7f5a734ed252623fc2c92d872af6fdf2000c5 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s <[email protected]> date: 2024-09-23T17:35:29-07:00 summary:
[3.13] gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH-119936) (#124005) gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH-119936) (cherry picked from commit 8e99495701737c9d9706622f59581213ef163b23) Co-authored-by: Nice Zombies <[email protected]> files: M Doc/library/inspect.rst diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 56a92690162cab..9cd1b34da0cca2 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -1018,7 +1018,8 @@ function. .. attribute:: BoundArguments.kwargs A dict of keyword arguments values. Dynamically computed from the - :attr:`arguments` attribute. + :attr:`arguments` attribute. Arguments that can be passed positionally + are included in :attr:`args` instead. .. attribute:: BoundArguments.signature _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
