From: Kurt B. Kaiser Date: Thu, 14 Feb 2008 02:47:50 +0000 (+0000) Subject: typo X-Git-Tag: v3.0a3~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d0d616c3b17c5843785ddf7ca61dcc295a82356;p=python typo --- diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index f855d123c6..b132ce3cf7 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -142,7 +142,7 @@ changes to rarely used features.) longer works: ``k = d.keys(); k.sort()``. Use ``k = sorted(d)`` instead. * :meth:`builtin.sorted` and :meth:`list.sort` no longer accept the *cmp* - argument providing a comparision function. Use the *key* argument + argument providing a comparison function. Use the *key* argument instead. N.B. the *key* and *reverse* arguments are now "keyword-only". * ``1/2`` returns a float. Use ``1//2`` to get the truncating behavior.