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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2019-03-26.06:33:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1553581988.35.0.681522734554.issue36431@roundup.psfhosted.org>
In-reply-to
Content
The following PR replaces the sequence of statement

    d = d1.copy()
    d.update(d2)

(where d1 and d2 are dicts) with a form proposed in PEP 448:

    d = {**d1, **d2}

or equivalent.

Besides functools, where using the new syntax makes the code clearer, there are not much occurrences of such idiom: only in yet 5 files, 1-2 times per file.
History
Date User Action Args
2019-03-26 06:33:08serhiy.storchakasetrecipients: + serhiy.storchaka
2019-03-26 06:33:08serhiy.storchakasetmessageid: <1553581988.35.0.681522734554.issue36431@roundup.psfhosted.org>
2019-03-26 06:33:08serhiy.storchakalinkissue36431 messages
2019-03-26 06:33:08serhiy.storchakacreate