summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-02 08:06:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-02 08:06:43 (GMT)
commite036ef8fa29f27d57fe9f8cef8d931d4122d8223 (patch)
treeb3d48b866f7339d7577f68529326fba4856b821e /Misc
parent0a3beffc8f6483da16523fceb9158af6a259a608 (diff)
downloadcpython-e036ef8fa29f27d57fe9f8cef8d931d4122d8223.zip
cpython-e036ef8fa29f27d57fe9f8cef8d931d4122d8223.tar.gz
cpython-e036ef8fa29f27d57fe9f8cef8d931d4122d8223.tar.bz2
Issue #27358: Optimized merging var-keyword arguments and improved error
message when pass a non-mapping as a var-keyword argument.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 919674b..b547e4a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #27358: Optimized merging var-keyword arguments and improved error
+ message when pass a non-mapping as a var-keyword argument.
+
- Issue #28257: Improved error message when pass a non-iterable as
a var-positional argument. Added opcode BUILD_TUPLE_UNPACK_WITH_CALL.