Skip to content

Commit 690959f

Browse files
committed
untabify
1 parent 9273f80 commit 690959f

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
@@ -68,9 +68,9 @@ while_stmt: 'while' test ':' suite ['else' ':' suite]
6868
for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
6969
try_stmt: ('try' ':' suite
7070
((except_clause ':' suite)+
71-
['else' ':' suite]
72-
['finally' ':' suite] |
73-
'finally' ':' suite))
71+
['else' ':' suite]
72+
['finally' ':' suite] |
73+
'finally' ':' suite))
7474
with_stmt: 'with' with_item (',' with_item)* ':' suite
7575
with_item: test ['as' expr]
7676
# NB compile.c makes sure that the default except clause is last

0 commit comments

Comments
 (0)