summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-02 07:33:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-02 07:33:46 (GMT)
commit7344285c1919e5ade8016a83a3ee02fd637a030d (patch)
treef5ac9aea45f055c175d1c462f63eb4fb341830b0 /Misc
parent8f0f2056499847999fffa7af7a8872500a191203 (diff)
downloadcpython-7344285c1919e5ade8016a83a3ee02fd637a030d.zip
cpython-7344285c1919e5ade8016a83a3ee02fd637a030d.tar.gz
cpython-7344285c1919e5ade8016a83a3ee02fd637a030d.tar.bz2
Issue #28257: Improved error message when pass a non-iterable as
a var-positional argument. Added opcode BUILD_TUPLE_UNPACK_WITH_CALL.
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 831cb22..919674b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #28257: Improved error message when pass a non-iterable as
+ a var-positional argument. Added opcode BUILD_TUPLE_UNPACK_WITH_CALL.
+
- Issue #28322: Fixed possible crashes when unpickle itertools objects from
incorrect pickle data. Based on patch by John Leitch.