summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-04-08 15:28:02 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-04-08 15:28:02 (GMT)
commit0fceaf45e2f6695685785e18852902740210a128 (patch)
tree091cf01bb32ba468714abd33b2415ecadbb9a198 /Misc/NEWS
parent7ddf3eba90576f51c14b8da0df2970589761b78e (diff)
downloadcpython-0fceaf45e2f6695685785e18852902740210a128.zip
cpython-0fceaf45e2f6695685785e18852902740210a128.tar.gz
cpython-0fceaf45e2f6695685785e18852902740210a128.tar.bz2
inspect.signautre: Fix functools.partial support. Issue #21117
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ec4ea5c..c82bff3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -106,6 +106,11 @@ Library
(Original patches by Hirokazu Yamamoto and Amaury Forgeot d'Arc, with
suggested wording by David Gutteridge)
+- Issue #21117: Fix inspect.signature to better support functools.partial.
+ Due to the specifics of functools.partial implementation,
+ positional-or-keyword arguments passed as keyword arguments become
+ keyword-only.
+
IDLE
----