diff options
author | Guido van Rossum <guido@python.org> | 1990-10-26 15:01:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-26 15:01:05 (GMT) |
commit | 3ccb6172f86d67335b577fd0160de1055e1b0cb6 (patch) | |
tree | afdc6f6ffa4e6688e8ba8283166578137d3c065f /Include | |
parent | 0558a205a37a2570cba43acebbe94d50643024d1 (diff) | |
download | cpython-3ccb6172f86d67335b577fd0160de1055e1b0cb6.zip cpython-3ccb6172f86d67335b577fd0160de1055e1b0cb6.tar.gz cpython-3ccb6172f86d67335b577fd0160de1055e1b0cb6.tar.bz2 |
removed dir statement. Function arguments may now be tests.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/graminit.h | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/Include/graminit.h b/Include/graminit.h index 098713e..70ebb47 100644 --- a/Include/graminit.h +++ b/Include/graminit.h @@ -11,33 +11,32 @@ #define expr_stmt 266 #define print_stmt 267 #define del_stmt 268 -#define dir_stmt 269 -#define pass_stmt 270 -#define flow_stmt 271 -#define break_stmt 272 -#define return_stmt 273 -#define raise_stmt 274 -#define import_stmt 275 -#define compound_stmt 276 -#define if_stmt 277 -#define while_stmt 278 -#define for_stmt 279 -#define try_stmt 280 -#define except_clause 281 -#define suite 282 -#define test 283 -#define and_test 284 -#define not_test 285 -#define comparison 286 -#define comp_op 287 -#define expr 288 -#define term 289 -#define factor 290 -#define atom 291 -#define trailer 292 -#define subscript 293 -#define exprlist 294 -#define testlist 295 -#define classdef 296 -#define baselist 297 -#define arguments 298 +#define pass_stmt 269 +#define flow_stmt 270 +#define break_stmt 271 +#define return_stmt 272 +#define raise_stmt 273 +#define import_stmt 274 +#define compound_stmt 275 +#define if_stmt 276 +#define while_stmt 277 +#define for_stmt 278 +#define try_stmt 279 +#define except_clause 280 +#define suite 281 +#define test 282 +#define and_test 283 +#define not_test 284 +#define comparison 285 +#define comp_op 286 +#define expr 287 +#define term 288 +#define factor 289 +#define atom 290 +#define trailer 291 +#define subscript 292 +#define exprlist 293 +#define testlist 294 +#define classdef 295 +#define baselist 296 +#define arguments 297 |