blob: 88f7884b5a55d9a4c8751d4e26d7af565050f4c6 [file] [log] [blame]
Benjamin Petersona846d0a2012-01-15 21:28:00 -05001# Grammar for 2to3. This grammar supports Python 2.x and 3.x.
Martin v. Löwisef04c442008-03-19 05:04:44 +00002
3# Note: Changing the grammar specified in this file will most likely
4# require corresponding changes in the parser module
5# (../Modules/parsermodule.c). If you can't make the changes to
6# that module yourself, please co-ordinate the required changes
7# with someone who can; ask around on python-dev for help. Fred
8# Drake <fdrake@acm.org> will probably be listening there.
9
10# NOTE WELL: You should also follow all the steps listed in PEP 306,
11# "How to Change Python's Grammar"
12
13# Commands for Kees Blom's railroad program
14#diagram:token NAME
15#diagram:token NUMBER
16#diagram:token STRING
17#diagram:token NEWLINE
18#diagram:token ENDMARKER
19#diagram:token INDENT
20#diagram:output\input python.bla
21#diagram:token DEDENT
22#diagram:output\textwidth 20.04cm\oddsidemargin 0.0cm\evensidemargin 0.0cm
23#diagram:rules
24
25# Start symbols for the grammar:
26# file_input is a module or sequence of commands read from an input file;
27# single_input is a single interactive statement;
28# eval_input is the input for the eval() and input() functions.
29# NB: compound_stmt in single_input is followed by extra NEWLINE!
30file_input: (NEWLINE | stmt)* ENDMARKER
31single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
32eval_input: testlist NEWLINE* ENDMARKER
33
34decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
35decorators: decorator+
Yury Selivanov75445082015-05-11 22:57:16 -040036decorated: decorators (classdef | funcdef | async_funcdef)
37async_funcdef: ASYNC funcdef
Martin v. Löwisef04c442008-03-19 05:04:44 +000038funcdef: 'def' NAME parameters ['->' test] ':' suite
39parameters: '(' [typedargslist] ')'
40typedargslist: ((tfpdef ['=' test] ',')*
41 ('*' [tname] (',' tname ['=' test])* [',' '**' tname] | '**' tname)
42 | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
43tname: NAME [':' test]
44tfpdef: tname | '(' tfplist ')'
45tfplist: tfpdef (',' tfpdef)* [',']
46varargslist: ((vfpdef ['=' test] ',')*
47 ('*' [vname] (',' vname ['=' test])* [',' '**' vname] | '**' vname)
48 | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
49vname: NAME
50vfpdef: vname | '(' vfplist ')'
51vfplist: vfpdef (',' vfpdef)* [',']
52
53stmt: simple_stmt | compound_stmt
54simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
55small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
56 import_stmt | global_stmt | exec_stmt | assert_stmt)
Benjamin Petersond9af52b2009-11-02 18:16:28 +000057expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) |
58 ('=' (yield_expr|testlist_star_expr))*)
59testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
Benjamin Peterson4ab92c82014-04-10 00:12:47 -040060augassign: ('+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' |
Martin v. Löwisef04c442008-03-19 05:04:44 +000061 '<<=' | '>>=' | '**=' | '//=')
62# For normal assignments, additional restrictions enforced by the interpreter
63print_stmt: 'print' ( [ test (',' test)* [','] ] |
64 '>>' test [ (',' test)+ [','] ] )
65del_stmt: 'del' exprlist
66pass_stmt: 'pass'
67flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt
68break_stmt: 'break'
69continue_stmt: 'continue'
70return_stmt: 'return' [testlist]
71yield_stmt: yield_expr
72raise_stmt: 'raise' [test ['from' test | ',' test [',' test]]]
73import_stmt: import_name | import_from
74import_name: 'import' dotted_as_names
75import_from: ('from' ('.'* dotted_name | '.'+)
76 'import' ('*' | '(' import_as_names ')' | import_as_names))
77import_as_name: NAME ['as' NAME]
78dotted_as_name: dotted_name ['as' NAME]
79import_as_names: import_as_name (',' import_as_name)* [',']
80dotted_as_names: dotted_as_name (',' dotted_as_name)*
81dotted_name: NAME ('.' NAME)*
82global_stmt: ('global' | 'nonlocal') NAME (',' NAME)*
83exec_stmt: 'exec' expr ['in' test [',' test]]
84assert_stmt: 'assert' test [',' test]
85
Yury Selivanov75445082015-05-11 22:57:16 -040086compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated | async_stmt
87async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
Martin v. Löwisef04c442008-03-19 05:04:44 +000088if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
89while_stmt: 'while' test ':' suite ['else' ':' suite]
90for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
91try_stmt: ('try' ':' suite
92 ((except_clause ':' suite)+
93 ['else' ':' suite]
94 ['finally' ':' suite] |
95 'finally' ':' suite))
Benjamin Peterson2c3ac6b2009-06-11 23:47:38 +000096with_stmt: 'with' with_item (',' with_item)* ':' suite
97with_item: test ['as' expr]
Martin v. Löwisef04c442008-03-19 05:04:44 +000098with_var: 'as' expr
99# NB compile.c makes sure that the default except clause is last
100except_clause: 'except' [test [(',' | 'as') test]]
101suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
102
103# Backward compatibility cruft to support:
104# [ x for x in lambda: True, lambda: False if x() ]
105# even while also allowing:
106# lambda x: 5 if x else 2
107# (But not a mix of the two)
108testlist_safe: old_test [(',' old_test)+ [',']]
109old_test: or_test | old_lambdef
110old_lambdef: 'lambda' [varargslist] ':' old_test
111
112test: or_test ['if' or_test 'else' test] | lambdef
113or_test: and_test ('or' and_test)*
114and_test: not_test ('and' not_test)*
115not_test: 'not' not_test | comparison
116comparison: expr (comp_op expr)*
117comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000118star_expr: '*' expr
Martin v. Löwisef04c442008-03-19 05:04:44 +0000119expr: xor_expr ('|' xor_expr)*
120xor_expr: and_expr ('^' and_expr)*
121and_expr: shift_expr ('&' shift_expr)*
122shift_expr: arith_expr (('<<'|'>>') arith_expr)*
123arith_expr: term (('+'|'-') term)*
Benjamin Peterson4ab92c82014-04-10 00:12:47 -0400124term: factor (('*'|'@'|'/'|'%'|'//') factor)*
Martin v. Löwisef04c442008-03-19 05:04:44 +0000125factor: ('+'|'-'|'~') factor | power
Yury Selivanov75445082015-05-11 22:57:16 -0400126power: [AWAIT] atom trailer* ['**' factor]
Martin v. Löwisef04c442008-03-19 05:04:44 +0000127atom: ('(' [yield_expr|testlist_gexp] ')' |
128 '[' [listmaker] ']' |
129 '{' [dictsetmaker] '}' |
130 '`' testlist1 '`' |
131 NAME | NUMBER | STRING+ | '.' '.' '.')
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000132listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Benjamin Petersonf37eb3a2010-10-14 23:00:04 +0000133testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000134lambdef: 'lambda' [varargslist] ':' test
135trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
136subscriptlist: subscript (',' subscript)* [',']
137subscript: test | [test] ':' [test] [sliceop]
138sliceop: ':' [test]
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000139exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
Martin v. Löwisef04c442008-03-19 05:04:44 +0000140testlist: test (',' test)* [',']
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)28325742016-09-09 18:18:52 -0700141dictsetmaker: ( ((test ':' test | '**' expr)
142 (comp_for | (',' (test ':' test | '**' expr))* [','])) |
143 ((test | star_expr)
144 (comp_for | (',' (test | star_expr))* [','])) )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000145
146classdef: 'class' NAME ['(' [arglist] ')'] ':' suite
147
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)28325742016-09-09 18:18:52 -0700148arglist: argument (',' argument)* [',']
149
150# "test '=' test" is really "keyword '=' test", but we have no such token.
151# These need to be in a single rule to avoid grammar that is ambiguous
152# to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
153# we explicitly match '*' here, too, to give it proper precedence.
154# Illegal combinations and orderings are blocked in ast.c:
155# multiple (test comp_for) arguements are blocked; keyword unpackings
156# that precede iterable unpackings are blocked; etc.
157argument: ( test [comp_for] |
158 test '=' test |
159 '**' expr |
160 star_expr )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000161
162comp_iter: comp_for | comp_if
163comp_for: 'for' exprlist 'in' testlist_safe [comp_iter]
164comp_if: 'if' old_test [comp_iter]
165
166testlist1: test (',' test)*
167
168# not used in grammar, but may appear in "node" passed from Parser to Compiler
169encoding_decl: NAME
170
Benjamin Peterson0654be12014-04-10 00:23:18 -0400171yield_expr: 'yield' [yield_arg]
172yield_arg: 'from' test | testlist