mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -56,10 +56,14 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#define NOTEQUAL 29
|
||||
#define LESSEQUAL 30
|
||||
#define GREATEREQUAL 31
|
||||
#define TILDE 32
|
||||
#define CIRCUMFLEX 33
|
||||
#define LEFTSHIFT 34
|
||||
#define RIGHTSHIFT 35
|
||||
/* Don't forget to update the table tok_name in tokenizer.c! */
|
||||
#define OP 32
|
||||
#define ERRORTOKEN 33
|
||||
#define N_TOKENS 34
|
||||
#define OP 36
|
||||
#define ERRORTOKEN 37
|
||||
#define N_TOKENS 38
|
||||
|
||||
/* Special definitions for cooperation with parser */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue