#! /usr/bin/env python """Non-terminal symbols of Python grammar (from "graminit.h").""" # This file is automatically generated; please don't muck it up! # # To update the symbols in this file, 'cd' to the top directory of # the python source tree after building the interpreter and run: # # python Lib/symbol.py #--start constants-- single_input = 256 file_input = 257 eval_input = 258 decorator = 259 decorators = 260 funcdef = 261 parameters = 262 varargslist = 263 fpdef = 264 fplist = 265 stmt = 266 simple_stmt = 267 small_stmt = 268 expr_stmt = 269 augassign = 270 print_stmt = 271 del_stmt = 272 pass_stmt = 273 flow_stmt = 274 break_stmt = 275 continue_stmt = 276 return_stmt = 277 yield_stmt = 278 raise_stmt = 279 import_stmt = 280 import_name = 281 import_from = 282 import_as_name = 283 dotted_as_name = 284 import_as_names = 285 dotted_as_names = 286 dotted_name = 287 global_stmt = 288 exec_stmt = 289 assert_stmt = 290 compound_stmt = 291 if_stmt = 292 iexec_stmt = 293 while_stmt = 294 for_stmt = 295 try_stmt = 296 except_clause = 297 suite = 298 test = 299 and_test = 300 not_test = 301 comparison = 302 comp_op = 303 expr = 304 xor_expr = 305 and_expr = 306 shift_expr = 307 arith_expr = 308 term = 309 factor = 310 power = 311 atom = 312 listmaker = 313 testlist_gexp = 314 lambdef = 315 trailer = 316 subscriptlist = 317 subscript = 318 sliceop = 319 exprlist = 320 testlist = 321 testlist_safe = 322 dictmaker = 323 classdef = 324 arglist = 325 argument = 326 list_iter = 327 list_for = 328 list_if = 329 gen_iter = 330 gen_for = 331 gen_if = 332 testlist1 = 333 encoding_decl = 334 #--end constants-- sym_name = {} for _name, _value in globals().items(): if type(_value) is type(0): sym_name[_value] = _name def main(): import sys import token if len(sys.argv) == 1: sys.argv = sys.argv + ["Include/graminit.h", "Lib/symbol.py"] token.main() if __name__ == "__main__": main()