From: Nice Zombies Date: Thu, 12 Sep 2024 12:03:32 +0000 (+0200) Subject: gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH... X-Git-Tag: v3.14.0a1~510 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e99495701737c9d9706622f59581213ef163b23;p=thirdparty%2FPython%2Fcpython.git gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH-119936) --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index f55824ab5f6c..57e5cf7ae023 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -1043,7 +1043,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