]> granicus.if.org Git - python/commitdiff
Issue25917 : Fix howto links in docs. Point the reference documentation instead of...
authorSenthil Kumaran <senthil@uthcode.com>
Sat, 2 Jan 2016 07:25:58 +0000 (23:25 -0800)
committerSenthil Kumaran <senthil@uthcode.com>
Sat, 2 Jan 2016 07:25:58 +0000 (23:25 -0800)
Doc/faq/programming.rst
Doc/library/functions.rst

index 295445edc122232e511853d4a597162f98d23cff..94b428d299183af57b41c3ef5a2a39f0a0f19f7d 100644 (file)
@@ -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 <https://wiki.python.org/moin/HowTo/Sorting>`_ 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
index 126106266df7ea8a411558961ff060e4001d618c..21aeaf9f5c36bd25671c7178089dd3ed67ce6a69 100644 (file)
@@ -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
-   <https://wiki.python.org/moin/HowTo/Sorting/>`_\.
+   For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`.
 
 .. function:: staticmethod(function)