[issue36332] compile() error on AST object with assignment expression

2019-03-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36332] compile() error on AST object with assignment expression

2019-03-18 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 0c9258a6d299e0484538ef8d4b23f30515283db2 by Pablo Galindo in branch 'master': bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398)

[issue36332] compile() error on AST object with assignment expression

2019-03-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36332] compile() error on AST object with assignment expression

2019-03-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +12353 stage: -> patch review ___ Python tracker ___ ___

[issue36332] compile() error on AST object with assignment expression

2019-03-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: validate_expr() needs a case for NamedExpr_kind. I think also that it is better to remove the "default" clause (and move its code after the switch statement) and allow the compiler to warn about missed cases. -- nosy: +serhiy.storchaka

[issue36332] compile() error on AST object with assignment expression

2019-03-17 Thread Guido van Rossum
Guido van Rossum added the comment: Confirmed. Emily, do you need help tracking this down? -- ___ Python tracker ___ ___

[issue36332] compile() error on AST object with assignment expression

2019-03-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +emilyemorehouse, gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36332] compile() error on AST object with assignment expression

2019-03-17 Thread Kyungdahm Yun
New submission from Kyungdahm Yun : Seems like compile() can't properly handle assignment expressions parsed in AST object. Python 3.8.0a2+ (heads/master:06e1e68, Mar 17 2019, 14:27:19) [Clang 10.0.0 (clang-1000.10.44.4)] on darwin Type "help", "copyright", "credits" or "license" for more