diff options
author | Thomas Wouters <thomas@python.org> | 2000-08-24 20:09:45 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-08-24 20:09:45 (GMT) |
commit | dd8dbdb7172fbafb5ffab8600e620103fc19879e (patch) | |
tree | d0706f5e94cb061057f85138e8637885c9f4cb57 /Include/graminit.h | |
parent | e289e0bd0c3db9755bb2ddd49b08091049bc301d (diff) | |
download | cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.zip cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.tar.gz cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.tar.bz2 |
The real suport for augmented assignment: new opcodes, new PyNumber and
PySequence methods and functions, new tokens.
Diffstat (limited to 'Include/graminit.h')
-rw-r--r-- | Include/graminit.h | 103 |
1 files changed, 52 insertions, 51 deletions
diff --git a/Include/graminit.h b/Include/graminit.h index e0f2c2a..350df35 100644 --- a/Include/graminit.h +++ b/Include/graminit.h @@ -10,54 +10,55 @@ #define simple_stmt 265 #define small_stmt 266 #define expr_stmt 267 -#define print_stmt 268 -#define del_stmt 269 -#define pass_stmt 270 -#define flow_stmt 271 -#define break_stmt 272 -#define continue_stmt 273 -#define return_stmt 274 -#define raise_stmt 275 -#define import_stmt 276 -#define import_as_name 277 -#define dotted_as_name 278 -#define dotted_name 279 -#define global_stmt 280 -#define exec_stmt 281 -#define assert_stmt 282 -#define compound_stmt 283 -#define if_stmt 284 -#define while_stmt 285 -#define for_stmt 286 -#define try_stmt 287 -#define except_clause 288 -#define suite 289 -#define test 290 -#define and_test 291 -#define not_test 292 -#define comparison 293 -#define comp_op 294 -#define expr 295 -#define xor_expr 296 -#define and_expr 297 -#define shift_expr 298 -#define arith_expr 299 -#define term 300 -#define factor 301 -#define power 302 -#define atom 303 -#define listmaker 304 -#define lambdef 305 -#define trailer 306 -#define subscriptlist 307 -#define subscript 308 -#define sliceop 309 -#define exprlist 310 -#define testlist 311 -#define dictmaker 312 -#define classdef 313 -#define arglist 314 -#define argument 315 -#define list_iter 316 -#define list_for 317 -#define list_if 318 +#define augassign 268 +#define print_stmt 269 +#define del_stmt 270 +#define pass_stmt 271 +#define flow_stmt 272 +#define break_stmt 273 +#define continue_stmt 274 +#define return_stmt 275 +#define raise_stmt 276 +#define import_stmt 277 +#define import_as_name 278 +#define dotted_as_name 279 +#define dotted_name 280 +#define global_stmt 281 +#define exec_stmt 282 +#define assert_stmt 283 +#define compound_stmt 284 +#define if_stmt 285 +#define while_stmt 286 +#define for_stmt 287 +#define try_stmt 288 +#define except_clause 289 +#define suite 290 +#define test 291 +#define and_test 292 +#define not_test 293 +#define comparison 294 +#define comp_op 295 +#define expr 296 +#define xor_expr 297 +#define and_expr 298 +#define shift_expr 299 +#define arith_expr 300 +#define term 301 +#define factor 302 +#define power 303 +#define atom 304 +#define listmaker 305 +#define lambdef 306 +#define trailer 307 +#define subscriptlist 308 +#define subscript 309 +#define sliceop 310 +#define exprlist 311 +#define testlist 312 +#define dictmaker 313 +#define classdef 314 +#define arglist 315 +#define argument 316 +#define list_iter 317 +#define list_for 318 +#define list_if 319 |