[issue26489] dictionary unpacking operator in dict expression

2016-03-06 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch! Could you please sign the contributor's agreement at https://www.python.org/psf/contrib/contrib-form/ ? -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed __

[issue26489] dictionary unpacking operator in dict expression

2016-03-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset a34428aff42d by Berker Peksag in branch '3.5': Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py https://hg.python.org/cpython/rev/a34428aff42d New changeset 1b212e366b66 by Berker Peksag in branch 'default': Issue #26489: Ad

[issue26489] dictionary unpacking operator in dict expression

2016-03-05 Thread Guo Ci Teo
New submission from Guo Ci Teo: The attached patch enables the unparse.py tool to unparse dictionary unpacking operators (**) in a dict expression, for example, {**{'y': 2}, 'x': 1} , as described in PEP 0448. -- components: Demos and Tools files: unpack_in_dict.patch keywords: patch