diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:51:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:51:44 (GMT) |
commit | 3d1f09557bd447b2e45bf90385391ffc16eafe13 (patch) | |
tree | 6b0e7a3dcef1fbd8f0611b79916429bb1c19c6c9 /Include/token.h | |
parent | b17d5dea4872f73b2e48f8236a60a2c6e74e7067 (diff) | |
download | cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.zip cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.tar.gz cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.tar.bz2 |
changes for ** (power) operator
Diffstat (limited to 'Include/token.h')
-rw-r--r-- | Include/token.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Include/token.h b/Include/token.h index 2be3a30..4558525 100644 --- a/Include/token.h +++ b/Include/token.h @@ -66,10 +66,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define CIRCUMFLEX 33 #define LEFTSHIFT 34 #define RIGHTSHIFT 35 +#define DOUBLESTAR 36 /* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */ -#define OP 36 -#define ERRORTOKEN 37 -#define N_TOKENS 38 +#define OP 37 +#define ERRORTOKEN 38 +#define N_TOKENS 39 /* Special definitions for cooperation with parser */ |