mirror of
https://github.com/davidhalter/parso.git
synced 2026-03-06 07:04:36 +08:00
comp_for is now called sync_comp_for for all Python versions to be compatible with the Python 3.8 Grammar
This commit is contained in:
@@ -140,7 +140,8 @@ argument: ( test [comp_for] |
|
||||
'*' test )
|
||||
|
||||
comp_iter: comp_for | comp_if
|
||||
comp_for: ['async'] 'for' exprlist 'in' or_test [comp_iter]
|
||||
sync_comp_for: 'for' exprlist 'in' or_test [comp_iter]
|
||||
comp_for: ['async'] sync_comp_for
|
||||
comp_if: 'if' test_nocond [comp_iter]
|
||||
|
||||
# not used in grammar, but may appear in "node" passed from Parser to Compiler
|
||||
|
||||
Reference in New Issue
Block a user