From 3454941d26ef85da2b5dca8fe8938ca470d90615 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 9 Nov 2014 17:25:42 -0800 Subject: [PATCH] Use internal links where possible --- Doc/library/functions.rst | 3 +-- 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 1683b29444..99ba882141 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 - `_\. + 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 086b0b5d1b..10dbd0fc1d 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 - `_\. + For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`. .. versionadded:: 2.7 -- 2.50.1