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 AL3X_69
Recipients AL3X_69
Date 2020-04-18.11:57:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1587211075.61.0.291186837344.issue40319@roundup.psfhosted.org>
In-reply-to
Content
When a dict is updated with update(), instead of return None, it will return the updated dict.

example: 

>>> a = {"test": 1}
>>> b = {"type": 2}
>>> c = a.update(b)
>>> print(c)
{"test": 1, "type": 1}
History
Date User Action Args
2020-04-18 11:57:55AL3X_69setrecipients: + AL3X_69
2020-04-18 11:57:55AL3X_69setmessageid: <1587211075.61.0.291186837344.issue40319@roundup.psfhosted.org>
2020-04-18 11:57:55AL3X_69linkissue40319 messages
2020-04-18 11:57:55AL3X_69create