summaryrefslogtreecommitdiffstats
path: root/Doc/library/inspect.rst
diff options
context:
space:
mode:
authorNice Zombies <nineteendo19d0@gmail.com>2024-09-12 12:03:32 (GMT)
committerGitHub <noreply@github.com>2024-09-12 12:03:32 (GMT)
commit8e99495701737c9d9706622f59581213ef163b23 (patch)
treeb67f3a2fce6a5147b34fdd6a7878a0adfa6f0648 /Doc/library/inspect.rst
parentf5597dbd0e7938648bfd9244f4a9225825b36b2b (diff)
downloadcpython-8e99495701737c9d9706622f59581213ef163b23.zip
cpython-8e99495701737c9d9706622f59581213ef163b23.tar.gz
cpython-8e99495701737c9d9706622f59581213ef163b23.tar.bz2
gh-118577: Clarify that inspect.BoundArguments prefers to put values in args (GH-119936)
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r--Doc/library/inspect.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index f55824a..57e5cf7 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