[issue29477] Lambda with complex arguments is ctx STORE

2019-08-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue29477] Lambda with complex arguments is ctx STORE

2017-02-08 Thread R. David Murray
R. David Murray added the comment: I presume this is a 2.7 only issue. I'm pretty sure the 2.7 AST isn't going to get changed in 2.7 at this point. -- nosy: +r.david.murray ___ Python tracker

[issue29477] Lambda with complex arguments is ctx STORE

2017-02-08 Thread Malthe Borch
New submission from Malthe Borch: Normally, lambda arguments (positional or keyword-based) are ctx PARAM, since they're parameters. But complex (packed) arguments are ctx STORE. This is a problem for AST transformation tools that can't reliably detect the name context. --