diff options
author | Guido van Rossum <guido@python.org> | 1991-10-24 14:59:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-10-24 14:59:31 (GMT) |
commit | 7928cd7636060c09da613d6f226a54903b86740a (patch) | |
tree | a098fc51fb6d3beb0efc3a7905c762190443b183 /Include/token.h | |
parent | 7a6dfa7d79597f29866033ecf648457fe7572a8f (diff) | |
download | cpython-7928cd7636060c09da613d6f226a54903b86740a.zip cpython-7928cd7636060c09da613d6f226a54903b86740a.tar.gz cpython-7928cd7636060c09da613d6f226a54903b86740a.tar.bz2 |
Added shift and mask ops.
Diffstat (limited to 'Include/token.h')
-rw-r--r-- | Include/token.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Include/token.h b/Include/token.h index 9c1ed71..d29c784 100644 --- a/Include/token.h +++ b/Include/token.h @@ -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 */ |