diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-12-22 00:50:56 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-12-22 00:50:56 (GMT) |
commit | eabc0e87af4a7b45f2e08e438b9d03ada2052080 (patch) | |
tree | 91c973b7f81ef7a2e3db5cd9bda724003e344f4d /Objects | |
parent | d5624cf6c99d01505c60599ace91af5013ec393c (diff) | |
download | cpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.zip cpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.tar.gz cpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.tar.bz2 |
Typo fix
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/dictnotes.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictnotes.txt b/Objects/dictnotes.txt index b0e59a7..3b63197 100644 --- a/Objects/dictnotes.txt +++ b/Objects/dictnotes.txt @@ -44,7 +44,7 @@ Uniquification d.setdefault(word, []).append(pagenumber) Note, the second example is a use case characterized by a get and set - to the same key. There are similar used cases with a __contains__ + to the same key. There are similar use cases with a __contains__ followed by a get, set, or del to the same key. Part of the justification for d.setdefault is combining the two lookups into one. |