mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
OK, ready to make 'assert' a keyword (instead of '__assert__').
This commit is contained in:
parent
7aa9fc5642
commit
03a7466b8f
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ global_stmt: 'global' NAME (',' NAME)*
|
|||
## accesstype should be ('public' | 'protected' | 'private') ['read'] ['write']
|
||||
## but can't be because that would create undesirable reserved words!
|
||||
exec_stmt: 'exec' expr ['in' test [',' test]]
|
||||
assert_stmt: '__assert__' test [',' test]
|
||||
assert_stmt: 'assert' test [',' test]
|
||||
|
||||
compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
|
||||
if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue