summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-10-15 11:40:02 (GMT)
committerGitHub <noreply@github.com>2019-10-15 11:40:02 (GMT)
commitf3ef06a7cb347ab7bd3cc2b0b3dcebe4f9ff36f9 (patch)
tree14fd293892933aadf389040db8e2be63cab4abf6 /Misc
parenteb1dda2b56f67f09352c303588c28880c471ae87 (diff)
downloadcpython-f3ef06a7cb347ab7bd3cc2b0b3dcebe4f9ff36f9.zip
cpython-f3ef06a7cb347ab7bd3cc2b0b3dcebe4f9ff36f9.tar.gz
cpython-f3ef06a7cb347ab7bd3cc2b0b3dcebe4f9ff36f9.tar.bz2
bpo-38478: Correctly handle keyword argument with same name as positional-only parameter (GH-16800)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-15-11-37-57.bpo-38478.A87OPO.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-15-11-37-57.bpo-38478.A87OPO.rst b/Misc/NEWS.d/next/Library/2019-10-15-11-37-57.bpo-38478.A87OPO.rst
new file mode 100644
index 0000000..b19fa23
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-10-15-11-37-57.bpo-38478.A87OPO.rst
@@ -0,0 +1,3 @@
+Fixed a bug in :meth:`inspect.signature.bind` that was causing it to fail
+when handling a keyword argument with same name as positional-only parameter.
+Patch by Pablo Galindo.