diff options
author | Raymond Hettinger <python@rcn.com> | 2014-11-10 01:25:42 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-11-10 01:25:42 (GMT) |
commit | 3454941d26ef85da2b5dca8fe8938ca470d90615 (patch) | |
tree | afefe44003a7deea609500c60df368a4c0e96ad0 /Doc | |
parent | ccae479e2de19a042a75a1c1e1cdca7453de86f6 (diff) | |
download | cpython-3454941d26ef85da2b5dca8fe8938ca470d90615.zip cpython-3454941d26ef85da2b5dca8fe8938ca470d90615.tar.gz cpython-3454941d26ef85da2b5dca8fe8938ca470d90615.tar.bz2 |
Use internal links where possible
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 3 | ||||
-rw-r--r-- | Doc/library/functools.rst | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 1683b29..99ba882 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1326,8 +1326,7 @@ available. They are listed here in alphabetical order. compare equal --- this is helpful for sorting in multiple passes (for example, sort by department, then by salary grade). - For sorting examples and a brief sorting tutorial, see `Sorting HowTo - <https://wiki.python.org/moin/HowTo/Sorting/>`_\. + For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`. .. versionadded:: 2.4 diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 086b0b5..10dbd0f 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -38,8 +38,7 @@ The :mod:`functools` module defines the following functions: sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order - For sorting examples and a brief sorting tutorial, see `Sorting HowTo - <https://wiki.python.org/moin/HowTo/Sorting/>`_\. + For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`. .. versionadded:: 2.7 |