This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BTaskaya
Recipients BTaskaya
Date 2020-05-21.16:37:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590079028.52.0.440007809854.issue40715@roundup.psfhosted.org>
In-reply-to
Content
>>> {**{} for a in [1]}
ValueError: field 'key' is required for DictComp

should be

>>> {**{} for a in [1]}
  File "<stdin>", line 1
    {**{} for a in [1]}
     ^
SyntaxError: dict unpacking cannot be used in dict comprehension
History
Date User Action Args
2020-05-21 16:37:08BTaskayasetrecipients: + BTaskaya
2020-05-21 16:37:08BTaskayasetmessageid: <1590079028.52.0.440007809854.issue40715@roundup.psfhosted.org>
2020-05-21 16:37:08BTaskayalinkissue40715 messages
2020-05-21 16:37:08BTaskayacreate