diff options
author | Georg Brandl <georg@python.org> | 2007-08-31 07:58:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-31 07:58:27 (GMT) |
commit | 39cf04b7bb84122d263c6e3738cf67bccda72e63 (patch) | |
tree | 230da32d031cb1ed3f186555f77e843049dcd63b /Lib | |
parent | c3f5bad77803ad95731e418b4ba07675d69e3224 (diff) | |
download | cpython-39cf04b7bb84122d263c6e3738cf67bccda72e63.zip cpython-39cf04b7bb84122d263c6e3738cf67bccda72e63.tar.gz cpython-39cf04b7bb84122d263c6e3738cf67bccda72e63.tar.bz2 |
Regenerate Lib/symbol.py.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/symbol.py | 154 |
1 files changed, 73 insertions, 81 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py index 81624af..1b773d0 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -15,90 +15,82 @@ file_input = 257 eval_input = 258 decorator = 259 decorators = 260 -decorated_thing = 261 +decorated = 261 funcdef = 262 parameters = 263 typedargslist = 264 -tname = 265 -tfpdef = 266 -tfplist = 267 -varargslist = 268 -vname = 269 -vfpdef = 270 -vfplist = 271 -stmt = 272 -simple_stmt = 273 -small_stmt = 274 -expr_stmt = 275 -augassign = 276 -del_stmt = 277 -pass_stmt = 278 -flow_stmt = 279 -break_stmt = 280 -continue_stmt = 281 -return_stmt = 282 -yield_stmt = 283 -raise_stmt = 284 -import_stmt = 285 -import_name = 286 -import_from = 287 -import_as_name = 288 -dotted_as_name = 289 -import_as_names = 290 -dotted_as_names = 291 -dotted_name = 292 -global_stmt = 293 -nonlocal_stmt = 294 -assert_stmt = 295 -compound_stmt = 296 -if_stmt = 297 -while_stmt = 298 -for_stmt = 299 -try_stmt = 300 -with_stmt = 301 -with_var = 302 -except_clause = 303 -suite = 304 -testlist_safe = 305 -old_test = 306 -old_lambdef = 307 -test = 308 -or_test = 309 -and_test = 310 -not_test = 311 -comparison = 312 -comp_op = 313 -expr = 314 -xor_expr = 315 -and_expr = 316 -shift_expr = 317 -arith_expr = 318 -term = 319 -factor = 320 -power = 321 -atom = 322 -listmaker = 323 -testlist_gexp = 324 -lambdef = 325 -trailer = 326 -subscriptlist = 327 -subscript = 328 -sliceop = 329 -exprlist = 330 -testlist = 331 -dictsetmaker = 332 -classdef = 333 -arglist = 334 -argument = 335 -list_iter = 336 -list_for = 337 -list_if = 338 -gen_iter = 339 -gen_for = 340 -gen_if = 341 -testlist1 = 342 -encoding_decl = 343 -yield_expr = 344 +tfpdef = 265 +varargslist = 266 +vfpdef = 267 +stmt = 268 +simple_stmt = 269 +small_stmt = 270 +expr_stmt = 271 +augassign = 272 +del_stmt = 273 +pass_stmt = 274 +flow_stmt = 275 +break_stmt = 276 +continue_stmt = 277 +return_stmt = 278 +yield_stmt = 279 +raise_stmt = 280 +import_stmt = 281 +import_name = 282 +import_from = 283 +import_as_name = 284 +dotted_as_name = 285 +import_as_names = 286 +dotted_as_names = 287 +dotted_name = 288 +global_stmt = 289 +nonlocal_stmt = 290 +assert_stmt = 291 +compound_stmt = 292 +if_stmt = 293 +while_stmt = 294 +for_stmt = 295 +try_stmt = 296 +with_stmt = 297 +with_var = 298 +except_clause = 299 +suite = 300 +test = 301 +test_nocond = 302 +lambdef = 303 +lambdef_nocond = 304 +or_test = 305 +and_test = 306 +not_test = 307 +comparison = 308 +comp_op = 309 +star_expr = 310 +expr = 311 +xor_expr = 312 +and_expr = 313 +shift_expr = 314 +arith_expr = 315 +term = 316 +factor = 317 +power = 318 +atom = 319 +testlist_comp = 320 +trailer = 321 +subscriptlist = 322 +subscript = 323 +sliceop = 324 +exprlist = 325 +testlist = 326 +dictorsetmaker = 327 +classdef = 328 +arglist = 329 +argument = 330 +comp_iter = 331 +comp_for = 332 +comp_if = 333 +testlist1 = 334 +encoding_decl = 335 +yield_expr = 336 #--end constants-- sym_name = {} |