diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2008-02-14 02:47:50 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2008-02-14 02:47:50 (GMT) |
commit | 9d0d616c3b17c5843785ddf7ca61dcc295a82356 (patch) | |
tree | ab44f239badb640e2ea6bf0ef35dfcc0f0577750 /Doc/whatsnew/3.0.rst | |
parent | 13394e907dc452537120b051cb4cdafe4900f334 (diff) | |
download | cpython-9d0d616c3b17c5843785ddf7ca61dcc295a82356.zip cpython-9d0d616c3b17c5843785ddf7ca61dcc295a82356.tar.gz cpython-9d0d616c3b17c5843785ddf7ca61dcc295a82356.tar.bz2 |
typo
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index f855d12..b132ce3 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. |