summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 07:36:35 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-29 07:36:35 (GMT)
commite73778c1ac0e58d3520b37308b970073e818fa00 (patch)
treeb176299e5205ce49c5ce71096966101556584eb2 /Doc/faq/programming.rst
parent46761ec7c2938ed48535276e11bd7fc834a9a0ca (diff)
downloadcpython-e73778c1ac0e58d3520b37308b970073e818fa00.zip
cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.gz
cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.bz2
Use https:// URLs when referring to python.org hosts.
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index c30c2b6..b52af60 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1020,7 +1020,7 @@ performance levels:
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 <http://wiki.python.org/moin/HowTo/Sorting>`_ for examples
+ `sorting mini-HOWTO <https://wiki.python.org/moin/HowTo/Sorting>`_ for examples
of moderately advanced usage).
* Abstractions tend to create indirections and force the interpreter to work
@@ -1040,7 +1040,7 @@ yourself.
.. seealso::
The wiki page devoted to `performance tips
- <http://wiki.python.org/moin/PythonSpeed/PerformanceTips>`_.
+ <https://wiki.python.org/moin/PythonSpeed/PerformanceTips>`_.
.. _efficient_string_concatenation: