mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Added shift and mask ops.
This commit is contained in:
parent
7a6dfa7d79
commit
7928cd7636
5 changed files with 426 additions and 45 deletions
|
|
@ -35,6 +35,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#define UNARY_NOT 12
|
||||
#define UNARY_CONVERT 13
|
||||
#define UNARY_CALL 14
|
||||
#define UNARY_INVERT 15
|
||||
|
||||
#define BINARY_MULTIPLY 20
|
||||
#define BINARY_DIVIDE 21
|
||||
|
|
@ -56,6 +57,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#define STORE_SUBSCR 60
|
||||
#define DELETE_SUBSCR 61
|
||||
|
||||
#define BINARY_LSHIFT 62
|
||||
#define BINARY_RSHIFT 63
|
||||
#define BINARY_AND 64
|
||||
#define BINARY_XOR 65
|
||||
#define BINARY_OR 66
|
||||
|
||||
|
||||
#define PRINT_EXPR 70
|
||||
#define PRINT_ITEM 71
|
||||
#define PRINT_NEWLINE 72
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue