From: Andrew M. Kuchling Date: Fri, 22 Dec 2006 00:50:56 +0000 (+0000) Subject: Typo fix X-Git-Tag: v2.6a1~2341 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eabc0e87af4a7b45f2e08e438b9d03ada2052080;p=thirdparty%2FPython%2Fcpython.git Typo fix --- diff --git a/Objects/dictnotes.txt b/Objects/dictnotes.txt index b0e59a7f10f9..3b63197e7946 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.