summaryrefslogtreecommitdiff
path: root/Include
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
commita9d40323166c43221f8a4f57170cb057f95ad2dc (patch)
treef32d0722a46b1c59d52029a97a541c8605e1b18e /Include
parent535e8c2b858cefbfb8429eb36bb1cb7f55cc1f43 (diff)
downloadcpython-a9d40323166c43221f8a4f57170cb057f95ad2dc.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')
-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