blob: 2abd5ee65b5bbd7f1573182d8eaf95adb407e8ea [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)
Yury Selivanovf8cb8a12016-09-08 20:50:03 -070057expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) |
Benjamin Petersond9af52b2009-11-02 18:16:28 +000058 ('=' (yield_expr|testlist_star_expr))*)
Yury Selivanovf8cb8a12016-09-08 20:50:03 -070059annassign: ':' test ['=' test]
Benjamin Petersond9af52b2009-11-02 18:16:28 +000060testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
Benjamin Peterson4ab92c82014-04-10 00:12:47 -040061augassign: ('+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' |
Martin v. Löwisef04c442008-03-19 05:04:44 +000062 '<<=' | '>>=' | '**=' | '//=')
Yury Selivanovf8cb8a12016-09-08 20:50:03 -070063# For normal and annotated assignments, additional restrictions enforced by the interpreter
Martin v. Löwisef04c442008-03-19 05:04:44 +000064print_stmt: 'print' ( [ test (',' test)* [','] ] |
65 '>>' test [ (',' test)+ [','] ] )
66del_stmt: 'del' exprlist
67pass_stmt: 'pass'
68flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt
69break_stmt: 'break'
70continue_stmt: 'continue'
71return_stmt: 'return' [testlist]
72yield_stmt: yield_expr
73raise_stmt: 'raise' [test ['from' test | ',' test [',' test]]]
74import_stmt: import_name | import_from
75import_name: 'import' dotted_as_names
76import_from: ('from' ('.'* dotted_name | '.'+)
77 'import' ('*' | '(' import_as_names ')' | import_as_names))
78import_as_name: NAME ['as' NAME]
79dotted_as_name: dotted_name ['as' NAME]
80import_as_names: import_as_name (',' import_as_name)* [',']
81dotted_as_names: dotted_as_name (',' dotted_as_name)*
82dotted_name: NAME ('.' NAME)*
83global_stmt: ('global' | 'nonlocal') NAME (',' NAME)*
84exec_stmt: 'exec' expr ['in' test [',' test]]
85assert_stmt: 'assert' test [',' test]
86
Yury Selivanov75445082015-05-11 22:57:16 -040087compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated | async_stmt
88async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
Martin v. Löwisef04c442008-03-19 05:04:44 +000089if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
90while_stmt: 'while' test ':' suite ['else' ':' suite]
91for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
92try_stmt: ('try' ':' suite
93 ((except_clause ':' suite)+
94 ['else' ':' suite]
95 ['finally' ':' suite] |
96 'finally' ':' suite))
Benjamin Peterson2c3ac6b2009-06-11 23:47:38 +000097with_stmt: 'with' with_item (',' with_item)* ':' suite
98with_item: test ['as' expr]
Martin v. Löwisef04c442008-03-19 05:04:44 +000099with_var: 'as' expr
100# NB compile.c makes sure that the default except clause is last
101except_clause: 'except' [test [(',' | 'as') test]]
102suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
103
104# Backward compatibility cruft to support:
105# [ x for x in lambda: True, lambda: False if x() ]
106# even while also allowing:
107# lambda x: 5 if x else 2
108# (But not a mix of the two)
109testlist_safe: old_test [(',' old_test)+ [',']]
110old_test: or_test | old_lambdef
111old_lambdef: 'lambda' [varargslist] ':' old_test
112
113test: or_test ['if' or_test 'else' test] | lambdef
114or_test: and_test ('or' and_test)*
115and_test: not_test ('and' not_test)*
116not_test: 'not' not_test | comparison
117comparison: expr (comp_op expr)*
118comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000119star_expr: '*' expr
Martin v. Löwisef04c442008-03-19 05:04:44 +0000120expr: xor_expr ('|' xor_expr)*
121xor_expr: and_expr ('^' and_expr)*
122and_expr: shift_expr ('&' shift_expr)*
123shift_expr: arith_expr (('<<'|'>>') arith_expr)*
124arith_expr: term (('+'|'-') term)*
Benjamin Peterson4ab92c82014-04-10 00:12:47 -0400125term: factor (('*'|'@'|'/'|'%'|'//') factor)*
Martin v. Löwisef04c442008-03-19 05:04:44 +0000126factor: ('+'|'-'|'~') factor | power
Yury Selivanov75445082015-05-11 22:57:16 -0400127power: [AWAIT] atom trailer* ['**' factor]
Martin v. Löwisef04c442008-03-19 05:04:44 +0000128atom: ('(' [yield_expr|testlist_gexp] ')' |
129 '[' [listmaker] ']' |
130 '{' [dictsetmaker] '}' |
131 '`' testlist1 '`' |
132 NAME | NUMBER | STRING+ | '.' '.' '.')
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000133listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Benjamin Petersonf37eb3a2010-10-14 23:00:04 +0000134testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000135lambdef: 'lambda' [varargslist] ':' test
136trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
137subscriptlist: subscript (',' subscript)* [',']
138subscript: test | [test] ':' [test] [sliceop]
139sliceop: ':' [test]
Benjamin Petersond9af52b2009-11-02 18:16:28 +0000140exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
Martin v. Löwisef04c442008-03-19 05:04:44 +0000141testlist: test (',' test)* [',']
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)28325742016-09-09 18:18:52 -0700142dictsetmaker: ( ((test ':' test | '**' expr)
143 (comp_for | (',' (test ':' test | '**' expr))* [','])) |
144 ((test | star_expr)
145 (comp_for | (',' (test | star_expr))* [','])) )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000146
147classdef: 'class' NAME ['(' [arglist] ')'] ':' suite
148
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)28325742016-09-09 18:18:52 -0700149arglist: argument (',' argument)* [',']
150
151# "test '=' test" is really "keyword '=' test", but we have no such token.
152# These need to be in a single rule to avoid grammar that is ambiguous
153# to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
154# we explicitly match '*' here, too, to give it proper precedence.
155# Illegal combinations and orderings are blocked in ast.c:
Martin Panterd2a584b2016-10-10 00:24:34 +0000156# multiple (test comp_for) arguments are blocked; keyword unpackings
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)28325742016-09-09 18:18:52 -0700157# that precede iterable unpackings are blocked; etc.
158argument: ( test [comp_for] |
159 test '=' test |
160 '**' expr |
161 star_expr )
Martin v. Löwisef04c442008-03-19 05:04:44 +0000162
163comp_iter: comp_for | comp_if
Yury Selivanov52c4e7c2016-09-09 10:36:01 -0700164comp_for: [ASYNC] 'for' exprlist 'in' testlist_safe [comp_iter]
Martin v. Löwisef04c442008-03-19 05:04:44 +0000165comp_if: 'if' old_test [comp_iter]
166
167testlist1: test (',' test)*
168
169# not used in grammar, but may appear in "node" passed from Parser to Compiler
170encoding_decl: NAME
171
Benjamin Peterson0654be12014-04-10 00:23:18 -0400172yield_expr: 'yield' [yield_arg]
173yield_arg: 'from' test | testlist