diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-01-02 07:25:58 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-01-02 07:25:58 (GMT) |
commit | d03d1d45f5d66395f66f165e9b097cd2757ce618 (patch) | |
tree | bcb200971f329d59e112d696e8dd99ae06848b44 /Doc/faq/programming.rst | |
parent | c25784c089820c8e55cc13ef7533ab06a8308099 (diff) | |
download | cpython-d03d1d45f5d66395f66f165e9b097cd2757ce618.zip cpython-d03d1d45f5d66395f66f165e9b097cd2757ce618.tar.gz cpython-d03d1d45f5d66395f66f165e9b097cd2757ce618.tar.bz2 |
Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.
Diffstat (limited to 'Doc/faq/programming.rst')
-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 |