From: Georg Brandl Date: Sat, 10 Mar 2012 19:52:16 +0000 (+0100) Subject: Close #14248: fix typo. X-Git-Tag: v3.3.0a2~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a08e7e1c5d280d87b77b2b49b785a5eadcca93c1;p=thirdparty%2FPython%2Fcpython.git Close #14248: fix typo. --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 28294cb977d8..bccb40dc57c2 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -475,7 +475,7 @@ Some smaller changes made to the core Python language are: (:issue:`12170`) * A dict lookup now raises a :exc:`RuntimeError` if the dict is modified during - the lookup. If you implement your own comparaison function for objects used + the lookup. If you implement your own comparison function for objects used as dict keys and the dict is shared by multiple threads, access to the dict should be protected by a lock.