Grammar.txt 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # Grammar for 2to3. This grammar supports Python 2.x and 3.x.
  2. # Note: Changing the grammar specified in this file will most likely
  3. # require corresponding changes in the parser module
  4. # (../Modules/parsermodule.c). If you can't make the changes to
  5. # that module yourself, please co-ordinate the required changes
  6. # with someone who can; ask around on python-dev for help. Fred
  7. # Drake <fdrake@acm.org> will probably be listening there.
  8. # NOTE WELL: You should also follow all the steps listed in PEP 306,
  9. # "How to Change Python's Grammar"
  10. # Commands for Kees Blom's railroad program
  11. #diagram:token NAME
  12. #diagram:token NUMBER
  13. #diagram:token STRING
  14. #diagram:token NEWLINE
  15. #diagram:token ENDMARKER
  16. #diagram:token INDENT
  17. #diagram:output\input python.bla
  18. #diagram:token DEDENT
  19. #diagram:output\textwidth 20.04cm\oddsidemargin 0.0cm\evensidemargin 0.0cm
  20. #diagram:rules
  21. # Start symbols for the grammar:
  22. # file_input is a module or sequence of commands read from an input file;
  23. # single_input is a single interactive statement;
  24. # eval_input is the input for the eval() and input() functions.
  25. # NB: compound_stmt in single_input is followed by extra NEWLINE!
  26. file_input: (NEWLINE | stmt)* ENDMARKER
  27. single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
  28. eval_input: testlist NEWLINE* ENDMARKER
  29. decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
  30. decorators: decorator+
  31. decorated: decorators (classdef | funcdef)
  32. funcdef: 'def' NAME parameters ['->' test] ':' suite
  33. parameters: '(' [typedargslist] ')'
  34. typedargslist: ((tfpdef ['=' test] ',')*
  35. ('*' [tname] (',' tname ['=' test])* [',' '**' tname] | '**' tname)
  36. | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
  37. tname: NAME [':' test]
  38. tfpdef: tname | '(' tfplist ')'
  39. tfplist: tfpdef (',' tfpdef)* [',']
  40. varargslist: ((vfpdef ['=' test] ',')*
  41. ('*' [vname] (',' vname ['=' test])* [',' '**' vname] | '**' vname)
  42. | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
  43. vname: NAME
  44. vfpdef: vname | '(' vfplist ')'
  45. vfplist: vfpdef (',' vfpdef)* [',']
  46. stmt: simple_stmt | compound_stmt
  47. simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
  48. small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
  49. import_stmt | global_stmt | exec_stmt | assert_stmt)
  50. expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) |
  51. ('=' (yield_expr|testlist_star_expr))*)
  52. testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
  53. augassign: ('+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' |
  54. '<<=' | '>>=' | '**=' | '//=')
  55. # For normal assignments, additional restrictions enforced by the interpreter
  56. print_stmt: 'print' ( [ test (',' test)* [','] ] |
  57. '>>' test [ (',' test)+ [','] ] )
  58. del_stmt: 'del' exprlist
  59. pass_stmt: 'pass'
  60. flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt
  61. break_stmt: 'break'
  62. continue_stmt: 'continue'
  63. return_stmt: 'return' [testlist]
  64. yield_stmt: yield_expr
  65. raise_stmt: 'raise' [test ['from' test | ',' test [',' test]]]
  66. import_stmt: import_name | import_from
  67. import_name: 'import' dotted_as_names
  68. import_from: ('from' ('.'* dotted_name | '.'+)
  69. 'import' ('*' | '(' import_as_names ')' | import_as_names))
  70. import_as_name: NAME ['as' NAME]
  71. dotted_as_name: dotted_name ['as' NAME]
  72. import_as_names: import_as_name (',' import_as_name)* [',']
  73. dotted_as_names: dotted_as_name (',' dotted_as_name)*
  74. dotted_name: NAME ('.' NAME)*
  75. global_stmt: ('global' | 'nonlocal') NAME (',' NAME)*
  76. exec_stmt: 'exec' expr ['in' test [',' test]]
  77. assert_stmt: 'assert' test [',' test]
  78. compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
  79. if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
  80. while_stmt: 'while' test ':' suite ['else' ':' suite]
  81. for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
  82. try_stmt: ('try' ':' suite
  83. ((except_clause ':' suite)+
  84. ['else' ':' suite]
  85. ['finally' ':' suite] |
  86. 'finally' ':' suite))
  87. with_stmt: 'with' with_item (',' with_item)* ':' suite
  88. with_item: test ['as' expr]
  89. with_var: 'as' expr
  90. # NB compile.c makes sure that the default except clause is last
  91. except_clause: 'except' [test [(',' | 'as') test]]
  92. suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
  93. # Backward compatibility cruft to support:
  94. # [ x for x in lambda: True, lambda: False if x() ]
  95. # even while also allowing:
  96. # lambda x: 5 if x else 2
  97. # (But not a mix of the two)
  98. testlist_safe: old_test [(',' old_test)+ [',']]
  99. old_test: or_test | old_lambdef
  100. old_lambdef: 'lambda' [varargslist] ':' old_test
  101. test: or_test ['if' or_test 'else' test] | lambdef
  102. or_test: and_test ('or' and_test)*
  103. and_test: not_test ('and' not_test)*
  104. not_test: 'not' not_test | comparison
  105. comparison: expr (comp_op expr)*
  106. comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
  107. star_expr: '*' expr
  108. expr: xor_expr ('|' xor_expr)*
  109. xor_expr: and_expr ('^' and_expr)*
  110. and_expr: shift_expr ('&' shift_expr)*
  111. shift_expr: arith_expr (('<<'|'>>') arith_expr)*
  112. arith_expr: term (('+'|'-') term)*
  113. term: factor (('*'|'@'|'/'|'%'|'//') factor)*
  114. factor: ('+'|'-'|'~') factor | power
  115. power: atom trailer* ['**' factor]
  116. atom: ('(' [yield_expr|testlist_gexp] ')' |
  117. '[' [listmaker] ']' |
  118. '{' [dictsetmaker] '}' |
  119. '`' testlist1 '`' |
  120. NAME | NUMBER | STRING+ | '.' '.' '.')
  121. listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
  122. testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
  123. lambdef: 'lambda' [varargslist] ':' test
  124. trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
  125. subscriptlist: subscript (',' subscript)* [',']
  126. subscript: test | [test] ':' [test] [sliceop]
  127. sliceop: ':' [test]
  128. exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
  129. testlist: test (',' test)* [',']
  130. dictsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
  131. (test (comp_for | (',' test)* [','])) )
  132. classdef: 'class' NAME ['(' [arglist] ')'] ':' suite
  133. arglist: (argument ',')* (argument [',']
  134. |'*' test (',' argument)* [',' '**' test]
  135. |'**' test)
  136. argument: test [comp_for] | test '=' test # Really [keyword '='] test
  137. comp_iter: comp_for | comp_if
  138. comp_for: 'for' exprlist 'in' testlist_safe [comp_iter]
  139. comp_if: 'if' old_test [comp_iter]
  140. testlist1: test (',' test)*
  141. # not used in grammar, but may appear in "node" passed from Parser to Compiler
  142. encoding_decl: NAME
  143. yield_expr: 'yield' [yield_arg]
  144. yield_arg: 'from' test | testlist