Revert "Merge pull request #27592 from rintaro/syntaxparse-exprtuple"

This reverts commit cdfd1ab2cf, reversing
changes made to eb02f20f99.
This commit is contained in:
Rintaro Ishizaki
2019-10-14 12:15:48 -07:00
parent b56c543f0d
commit 0e8010d8b9
16 changed files with 148 additions and 259 deletions

View File

@@ -153,8 +153,9 @@ STMT_NODES = [
Node('YieldList', kind='Syntax',
children=[
Child('LeftParen', kind='LeftParenToken'),
Child('ElementList', kind='TupleExprElementList',
Child('ElementList', kind='ExprList',
collection_element_name='Element'),
Child('TrailingComma', kind='CommaToken', is_optional=True),
Child('RightParen', kind='RightParenToken'),
]),