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 Ultrasick
Recipients Ultrasick
Date 2010-08-28.17:00:55
SpamBayes Score 0.0013843288
Marked as misclassified No
Message-id <1283014857.1.0.520835595652.issue9705@psf.upfronthosting.co.za>
In-reply-to
Content
my_dict_1 = {'a' : 1, 'b' : 1}
my_dict_2 = {'a' : 2, 'b' : 2, 'c' : 2}

my_dict_1.update(my_dict_2, ['a', 'c'])

should result for my_dict_1:

{'a' : 2, 'b' : 1, 'c' : 2}
History
Date User Action Args
2010-08-28 17:00:57Ultrasicksetrecipients: + Ultrasick
2010-08-28 17:00:57Ultrasicksetmessageid: <1283014857.1.0.520835595652.issue9705@psf.upfronthosting.co.za>
2010-08-28 17:00:55Ultrasicklinkissue9705 messages
2010-08-28 17:00:55Ultrasickcreate