New symbols due to assert statement.
This commit is contained in:
parent
c1a4ba97b7
commit
a9a3575e26
|
@ -37,38 +37,39 @@ import_stmt = 276
|
|||
dotted_name = 277
|
||||
global_stmt = 278
|
||||
exec_stmt = 279
|
||||
compound_stmt = 280
|
||||
if_stmt = 281
|
||||
while_stmt = 282
|
||||
for_stmt = 283
|
||||
try_stmt = 284
|
||||
except_clause = 285
|
||||
suite = 286
|
||||
test = 287
|
||||
and_test = 288
|
||||
not_test = 289
|
||||
comparison = 290
|
||||
comp_op = 291
|
||||
expr = 292
|
||||
xor_expr = 293
|
||||
and_expr = 294
|
||||
shift_expr = 295
|
||||
arith_expr = 296
|
||||
term = 297
|
||||
factor = 298
|
||||
power = 299
|
||||
atom = 300
|
||||
lambdef = 301
|
||||
trailer = 302
|
||||
subscriptlist = 303
|
||||
subscript = 304
|
||||
sliceop = 305
|
||||
exprlist = 306
|
||||
testlist = 307
|
||||
dictmaker = 308
|
||||
classdef = 309
|
||||
arglist = 310
|
||||
argument = 311
|
||||
assert_stmt = 280
|
||||
compound_stmt = 281
|
||||
if_stmt = 282
|
||||
while_stmt = 283
|
||||
for_stmt = 284
|
||||
try_stmt = 285
|
||||
except_clause = 286
|
||||
suite = 287
|
||||
test = 288
|
||||
and_test = 289
|
||||
not_test = 290
|
||||
comparison = 291
|
||||
comp_op = 292
|
||||
expr = 293
|
||||
xor_expr = 294
|
||||
and_expr = 295
|
||||
shift_expr = 296
|
||||
arith_expr = 297
|
||||
term = 298
|
||||
factor = 299
|
||||
power = 300
|
||||
atom = 301
|
||||
lambdef = 302
|
||||
trailer = 303
|
||||
subscriptlist = 304
|
||||
subscript = 305
|
||||
sliceop = 306
|
||||
exprlist = 307
|
||||
testlist = 308
|
||||
dictmaker = 309
|
||||
classdef = 310
|
||||
arglist = 311
|
||||
argument = 312
|
||||
#--end constants--
|
||||
|
||||
names = dir()
|
||||
|
|
Loading…
Reference in New Issue