diff options
author | Raymond Hettinger <python@rcn.com> | 2010-04-02 00:25:45 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-04-02 00:25:45 (GMT) |
commit | 46fca0773d25a690cb7ab4fa1c4f5d3b6c16dc12 (patch) | |
tree | ed85583a7b10e75750f74a6bfc9137b14613795c /Doc/library/functions.rst | |
parent | 8689a10f075fa2a1980a4fda040c46ed4dbcb3bb (diff) | |
download | cpython-46fca0773d25a690cb7ab4fa1c4f5d3b6c16dc12.zip cpython-46fca0773d25a690cb7ab4fa1c4f5d3b6c16dc12.tar.gz cpython-46fca0773d25a690cb7ab4fa1c4f5d3b6c16dc12.tar.bz2 |
Document sorting HowTo
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 75bab9e..b85eb71 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1018,6 +1018,9 @@ are always available. They are listed here in alphabetical order. `CmpToKey recipe in the ASPN cookbook <http://code.activestate.com/recipes/576653/>`_\. + For sorting examples and a brief sorting tutorial, see `Sorting HowTo + <http://wiki.python.org/moin/HowTo/Sorting/>`_\. + .. function:: staticmethod(function) Return a static method for *function*. |