summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-02 07:34:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-02 07:34:46 (GMT)
commit775a0ea0da81cd97e22541949a385bb34eb8184f (patch)
tree7f2ec826b06ccfa9c2caf3ef906efb698be45488 /Include
parent18c5e8e86f3ae2f67bbb893a5f89f9b4fb679f11 (diff)
parent7344285c1919e5ade8016a83a3ee02fd637a030d (diff)
downloadcpython-775a0ea0da81cd97e22541949a385bb34eb8184f.zip
cpython-775a0ea0da81cd97e22541949a385bb34eb8184f.tar.gz
cpython-775a0ea0da81cd97e22541949a385bb34eb8184f.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 'Include')
-rw-r--r--Include/opcode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 0903824..be360e1 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