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.

classification
Title: Make docu for dict.update more clear
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: cito, georg.brandl
Priority: low Keywords:

Created on 2006-11-11 17:37 by cito, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg30505 - (view) Author: Christoph Zwerschke (cito) * Date: 2006-11-11 17:37
In Note (9) to the mapping types documentation
(http://docs.python.org/lib/typesmapping.html), it
should be mentioned that dict.update returns None to
remind you that it changes the dict in place.

Also, the description should more precisely say
"updates (and overwrites) `a` with key/value pairs from
`b`" instead of "updates (and overwrites) key/value
pairs from `b`".
msg30506 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-11-11 18:33
Logged In: YES 
user_id=849994

Thanks for noticing, changed in rev. 52733, 52734 (2.5).
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44222
2006-11-11 17:37:49citocreate