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 mark.dickinson
Recipients mark.dickinson
Date 2010-04-16.15:15:55
SpamBayes Score 0.04564444
Marked as misclassified No
Message-id <1271430957.25.0.233592563986.issue8419@psf.upfronthosting.co.za>
In-reply-to
Content
The issue applies to dict.update as well:

>>> d = {1:2}
>>> d.update({3:4}, **{5:6})
>>> d
{1: 2, 3: 4, 5: 6}
History
Date User Action Args
2010-04-16 15:15:57mark.dickinsonsetrecipients: + mark.dickinson
2010-04-16 15:15:57mark.dickinsonsetmessageid: <1271430957.25.0.233592563986.issue8419@psf.upfronthosting.co.za>
2010-04-16 15:15:55mark.dickinsonlinkissue8419 messages
2010-04-16 15:15:55mark.dickinsoncreate