mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added UNPACK_ARG.
This commit is contained in:
parent
c06022966f
commit
750bf14c32
1 changed files with 3 additions and 1 deletions
|
@ -72,8 +72,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#define RAISE_EXCEPTION 81
|
#define RAISE_EXCEPTION 81
|
||||||
#define LOAD_LOCALS 82
|
#define LOAD_LOCALS 82
|
||||||
#define RETURN_VALUE 83
|
#define RETURN_VALUE 83
|
||||||
|
/*
|
||||||
#define REQUIRE_ARGS 84
|
#define REQUIRE_ARGS 84
|
||||||
#define REFUSE_ARGS 85
|
#define REFUSE_ARGS 85
|
||||||
|
*/
|
||||||
#define BUILD_FUNCTION 86
|
#define BUILD_FUNCTION 86
|
||||||
#define POP_BLOCK 87
|
#define POP_BLOCK 87
|
||||||
#define END_FINALLY 88
|
#define END_FINALLY 88
|
||||||
|
@ -85,7 +87,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#define DELETE_NAME 91 /* "" */
|
#define DELETE_NAME 91 /* "" */
|
||||||
#define UNPACK_TUPLE 92 /* Number of tuple items */
|
#define UNPACK_TUPLE 92 /* Number of tuple items */
|
||||||
#define UNPACK_LIST 93 /* Number of list items */
|
#define UNPACK_LIST 93 /* Number of list items */
|
||||||
/* unused: 94 */
|
#define UNPACK_ARG 94 /* Number of arguments */
|
||||||
#define STORE_ATTR 95 /* Index in name list */
|
#define STORE_ATTR 95 /* Index in name list */
|
||||||
#define DELETE_ATTR 96 /* "" */
|
#define DELETE_ATTR 96 /* "" */
|
||||||
#define STORE_GLOBAL 97 /* "" */
|
#define STORE_GLOBAL 97 /* "" */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue