diff options
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/programming.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 295445e..94b428d 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 <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 |