From: Senthil Kumaran Date: Sat, 2 Jan 2016 07:25:58 +0000 (-0800) Subject: Issue25917 : Fix howto links in docs. Point the reference documentation instead of... X-Git-Tag: v3.4.5rc1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d03d1d45f5d66395f66f165e9b097cd2757ce618;p=python Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki. --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 295445edc1..94b428d299 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1010,8 +1010,7 @@ performance levels: may come up with. This is doubly true for primitives written in C, such as builtins and some extension types. For example, be sure to use either the :meth:`list.sort` built-in method or the related :func:`sorted` - function to do sorting (and see the - `sorting mini-HOWTO `_ for examples + function to do sorting (and see the :ref:`sortinghowto` for examples of moderately advanced usage). * Abstractions tend to create indirections and force the interpreter to work diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 126106266d..21aeaf9f5c 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1296,8 +1296,7 @@ are always 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`. .. function:: staticmethod(function)