diff options
| author | Georg Brandl <georg@python.org> | 2006-11-11 18:32:50 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2006-11-11 18:32:50 (GMT) |
| commit | 8fc42c8aad7fa874a1aad9a16a112c9809fe7b9c (patch) | |
| tree | 761097f2513c82c9c7bc2a296956660b60576b3e | |
| parent | c33b7488de1dcdbcff709503d7b4ada8bbc0a620 (diff) | |
| download | cpython-8fc42c8aad7fa874a1aad9a16a112c9809fe7b9c.zip cpython-8fc42c8aad7fa874a1aad9a16a112c9809fe7b9c.tar.gz cpython-8fc42c8aad7fa874a1aad9a16a112c9809fe7b9c.tar.bz2 | |
Bug #1594758: wording improvement for dict.update() docs.
(backport from rev. 52733)
| -rw-r--r-- | Doc/lib/libstdtypes.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 5bd6590..a9fb19b 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -1424,7 +1424,8 @@ arbitrary objects): {(3)} \lineiii{\var{a}.keys()}{a copy of \var{a}'s list of keys}{(3)} \lineiii{\var{a}.update(\optional{\var{b}})} - {updates (and overwrites) key/value pairs from \var{b}} + {updates \var{a} with key/value pairs from \var{b}, overwriting + existing keys, returns \code{None}} {(9)} \lineiii{\var{a}.fromkeys(\var{seq}\optional{, \var{value}})} {Creates a new dictionary with keys from \var{seq} and values set to \var{value}} |
