[issue24176] Incorrect parsing of unpacked expressions in call

2015-05-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 38b2307372bf by Benjamin Peterson in branch 'default': allow test node after ** in calls (closes #24176) https://hg.python.org/cpython/rev/38b2307372bf -- nosy: +python-dev resolution: -> fixed stage: -> resolved status: open -> closed __

[issue24176] Incorrect parsing of unpacked expressions in call

2015-05-13 Thread Yury Selivanov
Changes by Yury Selivanov : -- nosy: +benjamin.peterson, yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24176] Incorrect parsing of unpacked expressions in call

2015-05-13 Thread Thomas Caswell
New submission from Thomas Caswell: On the current tip (changeset: 96023:4b5461dcd190) the following results in a syntax error def test(a='a', b='b'): print(a, b) opta = dict() optb = dict(a=1, b=2) test(**(opta or {})) # <- works on all python test(**optb or {})# <- fails on current