summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-13 08:29:47 (GMT)
committerGitHub <noreply@github.com>2024-05-13 08:29:47 (GMT)
commit35649dfe05f66c94979ea24571a0fcd5e105456b (patch)
treeb4a8b623e448282151a361c90f8fc21e64b1b4b3 /Misc
parent76dc1bf5be3b360f7d8c476accb0d8d53c8dfb08 (diff)
downloadcpython-35649dfe05f66c94979ea24571a0fcd5e105456b.zip
cpython-35649dfe05f66c94979ea24571a0fcd5e105456b.tar.gz
cpython-35649dfe05f66c94979ea24571a0fcd5e105456b.tar.bz2
[3.12] gh-87106: Fix inspect.signature.bind() handling of positional-only arguments with **kwargs (GH-103404) (GH-118984)
(cherry picked from commit 9c1520244151f36e010c1b04bedf14747a28517d) Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'Misc')
-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.