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 methane
Recipients jdemeyer, larry, methane, python-dev, rhettinger, vstinner
Date 2019-07-04.12:34:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562243682.38.0.173094080175.issue29312@roundup.psfhosted.org>
In-reply-to
Content
OK, `d1.update(**d2)` is not useful in practice.  Practical usages of dict.update() are:

* d.update(d2)
* d.update([(k1,k2),...])
* d.update(k1=v1, k2=v2, ...)
* d.update(**d2, **d3, **d4)  # little abuse, but possible.

In all of them, kwdict is not used at all or can't avoid unpacking the kwdict.
History
Date User Action Args
2019-07-04 12:34:42methanesetrecipients: + methane, rhettinger, vstinner, larry, python-dev, jdemeyer
2019-07-04 12:34:42methanesetmessageid: <1562243682.38.0.173094080175.issue29312@roundup.psfhosted.org>
2019-07-04 12:34:42methanelinkissue29312 messages
2019-07-04 12:34:42methanecreate