summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-13 08:35:31 (GMT)
committerGitHub <noreply@github.com>2024-05-13 08:35:31 (GMT)
commita8ea9669aa79b0d29e26a30824b7516efa612a02 (patch)
tree6098aa2846d6b35f7759d658395dfbaa67ad1d84 /Misc/NEWS.d
parent9d2c10bee3d8c756d395b840192dc3efd6ba8134 (diff)
downloadcpython-a8ea9669aa79b0d29e26a30824b7516efa612a02.zip
cpython-a8ea9669aa79b0d29e26a30824b7516efa612a02.tar.gz
cpython-a8ea9669aa79b0d29e26a30824b7516efa612a02.tar.bz2
[3.13] gh-87106: Fix inspect.signature.bind() handling of positional-only arguments with **kwargs (GH-103404) (#118985)
(cherry picked from commit 9c1520244151f36e010c1b04bedf14747a28517d) Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2023-04-10-00-04-37.gh-issue-87106.UyBnPQ.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-04-10-00-04-37.gh-issue-87106.UyBnPQ.rst b/Misc/NEWS.d/next/Library/2023-04-10-00-04-37.gh-issue-87106.UyBnPQ.rst
new file mode 100644
index 0000000..6f13188
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-04-10-00-04-37.gh-issue-87106.UyBnPQ.rst
@@ -0,0 +1,3 @@
+Fixed handling in :meth:`inspect.signature.bind` of keyword arguments having
+the same name as positional-only arguments when a variadic keyword argument
+(e.g. ``**kwargs``) is present.