diff options
author | Guido van Rossum <guido@python.org> | 1996-07-30 16:39:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-30 16:39:30 (GMT) |
commit | 26a70f6b32b8d5981bb9e39cc37f709dd7acf043 (patch) | |
tree | 337c671182290447a1f587787eda396627e4c92c | |
parent | 03eed4751240f4600f103a36a5d53ab921d9bb41 (diff) | |
download | cpython-26a70f6b32b8d5981bb9e39cc37f709dd7acf043.zip cpython-26a70f6b32b8d5981bb9e39cc37f709dd7acf043.tar.gz cpython-26a70f6b32b8d5981bb9e39cc37f709dd7acf043.tar.bz2 |
Changes due to slice and ellipses grammar changes
-rw-r--r-- | Include/graminit.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Include/graminit.h b/Include/graminit.h index 9fa64c2..2b80776 100644 --- a/Include/graminit.h +++ b/Include/graminit.h @@ -47,10 +47,12 @@ #define atom 302 #define lambdef 303 #define trailer 304 -#define subscript 305 -#define exprlist 306 -#define testlist 307 -#define dictmaker 308 -#define classdef 309 -#define arglist 310 -#define argument 311 +#define subscriptlist 305 +#define subscript 306 +#define sliceop 307 +#define exprlist 308 +#define testlist 309 +#define dictmaker 310 +#define classdef 311 +#define arglist 312 +#define argument 313 |