summaryrefslogtreecommitdiff
path: root/Include/opcode.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-02 10:33:46 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-02 10:33:46 +0300
commit7344285c1919e5ade8016a83a3ee02fd637a030d (patch)
treef5ac9aea45f055c175d1c462f63eb4fb341830b0 /Include/opcode.h
parent8f0f2056499847999fffa7af7a8872500a191203 (diff)
downloadcpython-git-7344285c1919e5ade8016a83a3ee02fd637a030d.tar.gz
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 'Include/opcode.h')
-rw-r--r--Include/opcode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 0903824183..be360e1016 100644
--- a/Include/opcode.h
+++ b/Include/opcode.h
@@ -125,6 +125,7 @@ extern "C" {
#define FORMAT_VALUE 155
#define BUILD_CONST_KEY_MAP 156
#define BUILD_STRING 157
+#define BUILD_TUPLE_UNPACK_WITH_CALL 158
/* EXCEPT_HANDLER is a special, implicit block type which is created when
entering an except handler. It is not an opcode but we define it here