diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-02 07:33:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-02 07:33:46 (GMT) |
commit | 7344285c1919e5ade8016a83a3ee02fd637a030d (patch) | |
tree | f5ac9aea45f055c175d1c462f63eb4fb341830b0 /Include | |
parent | 8f0f2056499847999fffa7af7a8872500a191203 (diff) | |
download | cpython-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 'Include')
-rw-r--r-- | Include/opcode.h | 1 |
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 |