From: Kurt B. Kaiser Date: Wed, 13 Feb 2008 18:03:11 +0000 (+0000) Subject: Improve formatting for arg names in previous checkin. X-Git-Tag: v3.0a3~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2bc6b5eb369b70a068f8de8728914467bb35b017;p=thirdparty%2FPython%2Fcpython.git Improve formatting for arg names in previous checkin. --- diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index ace0199bca9c..f855d123c672 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -141,9 +141,9 @@ changes to rarely used features.) :meth:`dict.values` return views instead of lists. For example, this no 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 - instead. N.B. the `key` and `reverse` arguments are now "keyword-only". +* :meth:`builtin.sorted` and :meth:`list.sort` no longer accept the *cmp* + argument providing a comparision 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.