Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Include/opcode.h

    r2 r388  
    2323#define UNARY_INVERT    15
    2424
    25 #define LIST_APPEND     18
    2625#define BINARY_POWER    19
    2726
     
    9089#define UNPACK_SEQUENCE 92      /* Number of sequence items */
    9190#define FOR_ITER        93
     91#define LIST_APPEND     94
    9292
    9393#define STORE_ATTR      95      /* Index in name list */
     
    100100#define BUILD_TUPLE     102     /* Number of tuple items */
    101101#define BUILD_LIST      103     /* Number of list items */
    102 #define BUILD_MAP       104     /* Always zero for now */
    103 #define LOAD_ATTR       105     /* Index in name list */
    104 #define COMPARE_OP      106     /* Comparison operator */
    105 #define IMPORT_NAME     107     /* Index in name list */
    106 #define IMPORT_FROM     108     /* Index in name list */
     102#define BUILD_SET       104     /* Number of set items */
     103#define BUILD_MAP       105     /* Always zero for now */
     104#define LOAD_ATTR       106     /* Index in name list */
     105#define COMPARE_OP      107     /* Comparison operator */
     106#define IMPORT_NAME     108     /* Index in name list */
     107#define IMPORT_FROM     109     /* Index in name list */
     108#define JUMP_FORWARD    110     /* Number of bytes to skip */
    107109
    108 #define JUMP_FORWARD    110     /* Number of bytes to skip */
    109 #define JUMP_IF_FALSE   111     /* "" */
    110 #define JUMP_IF_TRUE    112     /* "" */
    111 #define JUMP_ABSOLUTE   113     /* Target byte offset from beginning of code */
     110#define JUMP_IF_FALSE_OR_POP 111 /* Target byte offset from beginning
     111                                    of code */
     112#define JUMP_IF_TRUE_OR_POP 112 /* "" */
     113#define JUMP_ABSOLUTE   113     /* "" */
     114#define POP_JUMP_IF_FALSE 114   /* "" */
     115#define POP_JUMP_IF_TRUE 115    /* "" */
    112116
    113117#define LOAD_GLOBAL     116     /* Index in name list */
     
    139143#define CALL_FUNCTION_VAR_KW       142  /* #args + (#kwargs<<8) */
    140144
     145#define SETUP_WITH 143
     146
    141147/* Support for opargs more than 16 bits long */
    142 #define EXTENDED_ARG  143
     148#define EXTENDED_ARG  145
     149
     150#define SET_ADD         146
     151#define MAP_ADD         147
    143152
    144153
Note: See TracChangeset for help on using the changeset viewer.