diff options
author | Guido van Rossum <guido@python.org> | 1997-04-02 05:46:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-02 05:46:05 (GMT) |
commit | a9a3575e26769d21a90aa16efee0c7597c9a180d (patch) | |
tree | 89d7d7d91a63683baf81aa3d86a0a2ebe7606ae9 /Lib/symbol.py | |
parent | c1a4ba97b707d2e131fed456996b55b6b2f1df5e (diff) | |
download | cpython-a9a3575e26769d21a90aa16efee0c7597c9a180d.zip cpython-a9a3575e26769d21a90aa16efee0c7597c9a180d.tar.gz cpython-a9a3575e26769d21a90aa16efee0c7597c9a180d.tar.bz2 |
New symbols due to assert statement.
Diffstat (limited to 'Lib/symbol.py')
-rwxr-xr-x | Lib/symbol.py | 65 |
1 files changed, 33 insertions, 32 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py index 6d925ea..4a71968 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -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() |