diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-02 07:34:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-02 07:34:46 (GMT) |
commit | 775a0ea0da81cd97e22541949a385bb34eb8184f (patch) | |
tree | 7f2ec826b06ccfa9c2caf3ef906efb698be45488 /Include | |
parent | 18c5e8e86f3ae2f67bbb893a5f89f9b4fb679f11 (diff) | |
parent | 7344285c1919e5ade8016a83a3ee02fd637a030d (diff) | |
download | cpython-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.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 |