diff options
author | Raymond Hettinger <python@rcn.com> | 2010-04-02 00:23:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-04-02 00:23:40 (GMT) |
commit | bdfa22bbdac1b58cf6f7c3e51ab9a85e5799cb2e (patch) | |
tree | 08d85d17207e07128c80a65218454654c9f7975f /Doc | |
parent | 721a35001e620dce23c19cdfba6a64b38feec636 (diff) | |
download | cpython-bdfa22bbdac1b58cf6f7c3e51ab9a85e5799cb2e.zip cpython-bdfa22bbdac1b58cf6f7c3e51ab9a85e5799cb2e.tar.gz cpython-bdfa22bbdac1b58cf6f7c3e51ab9a85e5799cb2e.tar.bz2 |
Document sorting HowTo
Diffstat (limited to 'Doc')
-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 300a589..ff999e9 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1009,6 +1009,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*. |