From 54c656df30e3613c1e1d3bea07815f2cac674c55 Mon Sep 17 00:00:00 2001 From: Nice Zombies Date: Thu, 12 Sep 2024 14:03:32 +0200 Subject: [PATCH] gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH-119936) (cherry picked from commit 8e99495701737c9d9706622f59581213ef163b23) Co-authored-by: Nice Zombies --- Doc/library/inspect.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index dbf7d6868b02df..7f9b24b57ceeb5 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -986,7 +986,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