Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aefc1c7

Browse files
committed
untabify
1 parent d87e932 commit aefc1c7

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Grammar/Grammar

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
# "How to Change Python's Grammar"
1212

1313
# Start symbols for the grammar:
14-
# single_input is a single interactive statement;
15-
# file_input is a module or sequence of commands read from an input file;
16-
# eval_input is the input for the eval() and input() functions.
14+
# single_input is a single interactive statement;
15+
# file_input is a module or sequence of commands read from an input file;
16+
# eval_input is the input for the eval() and input() functions.
1717
# NB: compound_stmt in single_input is followed by extra NEWLINE!
1818
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
1919
file_input: (NEWLINE | stmt)* ENDMARKER
@@ -71,9 +71,9 @@ while_stmt: 'while' test ':' suite ['else' ':' suite]
7171
for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
7272
try_stmt: ('try' ':' suite
7373
((except_clause ':' suite)+
74-
['else' ':' suite]
75-
['finally' ':' suite] |
76-
'finally' ':' suite))
74+
['else' ':' suite]
75+
['finally' ':' suite] |
76+
'finally' ':' suite))
7777
with_stmt: 'with' with_item (',' with_item)* ':' suite
7878
with_item: test ['as' expr]
7979
# NB compile.c makes sure that the default except clause is last

0 commit comments

Comments
 (0)