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 eric.smith
Recipients eric.smith, thedemz
Date 2017-11-25.23:07:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511651264.51.0.213398074469.issue32135@psf.upfronthosting.co.za>
In-reply-to
Content
dict.update() returns None, so this is expected. Maybe you want:

>>> x = {"X":123}
>>> x.update({"abc":123})
>>> x
{'X': 123, 'abc': 123}
>>>
History
Date User Action Args
2017-11-25 23:07:44eric.smithsetrecipients: + eric.smith, thedemz
2017-11-25 23:07:44eric.smithsetmessageid: <1511651264.51.0.213398074469.issue32135@psf.upfronthosting.co.za>
2017-11-25 23:07:44eric.smithlinkissue32135 messages
2017-11-25 23:07:44eric.smithcreate