Skip to content

Commit 437032e

Browse files
gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)
(cherry picked from commit db39050) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent a7a7da4 commit 437032e

24 files changed

+63
-63
lines changed

Doc/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ These documents are generated from `reStructuredText`_ sources by `Sphinx`_, a
77
document processor specifically written for the Python documentation.
88

99
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
10-
.. _Sphinx: http://sphinx-doc.org/
10+
.. _Sphinx: https://www.sphinx-doc.org/
1111

1212
.. In the online version of these documents, you can submit comments and suggest
1313
changes directly on the documentation pages.

Doc/faq/general.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ at https://docs.python.org/3/. PDF, plain text, and downloadable HTML versions
182182
also available at https://docs.python.org/3/download.html.
183183

184184
The documentation is written in reStructuredText and processed by `the Sphinx
185-
documentation tool <http://sphinx-doc.org/>`__. The reStructuredText source for
185+
documentation tool <https://www.sphinx-doc.org/>`__. The reStructuredText source for
186186
the documentation is part of the Python source distribution.
187187

188188

@@ -270,7 +270,7 @@ Where in the world is www.python.org located?
270270
---------------------------------------------
271271

272272
The Python project's infrastructure is located all over the world and is managed
273-
by the Python Infrastructure Team. Details `here <http://infra.psf.io>`__.
273+
by the Python Infrastructure Team. Details `here <https://infra.psf.io>`__.
274274

275275

276276
Why is it called Python?

Doc/faq/library.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ How do I create documentation from doc strings?
181181
The :mod:`pydoc` module can create HTML from the doc strings in your Python
182182
source code. An alternative for creating API documentation purely from
183183
docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx
184-
<http://sphinx-doc.org>`_ can also include docstring content.
184+
<https://www.sphinx-doc.org>`_ can also include docstring content.
185185
186186
187187
How do I get a single keypress at a time?

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ use a list comprehension::
12701270
A = [[None] * w for i in range(h)]
12711271

12721272
Or, you can use an extension that provides a matrix datatype; `NumPy
1273-
<http://www.numpy.org/>`_ is the best known.
1273+
<https://numpy.org/>`_ is the best known.
12741274

12751275

12761276
How do I apply a method to a sequence of objects?

Doc/howto/unicode.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ References
517517
518518
Some good alternative discussions of Python's Unicode support are:
519519

520-
* `Processing Text Files in Python 3 <http://python-notes.curiousefficiency.org/en/latest/python3/text_file_processing.html>`_, by Nick Coghlan.
520+
* `Processing Text Files in Python 3 <https://python-notes.curiousefficiency.org/en/latest/python3/text_file_processing.html>`_, by Nick Coghlan.
521521
* `Pragmatic Unicode <https://nedbatchelder.com/text/unipain.html>`_, a PyCon 2012 presentation by Ned Batchelder.
522522

523523
The :class:`str` type is described in the Python library reference at

Doc/library/bisect.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ thoughts in mind:
127127
.. seealso::
128128

129129
* `Sorted Collections
130-
<http://www.grantjenks.com/docs/sortedcollections/>`_ is a high performance
130+
<https://grantjenks.com/docs/sortedcollections/>`_ is a high performance
131131
module that uses *bisect* to managed sorted collections of data.
132132

133133
* The `SortedCollection recipe

Doc/library/decimal.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ reset them before monitoring a calculation.
114114
.. seealso::
115115

116116
* IBM's General Decimal Arithmetic Specification, `The General Decimal Arithmetic
117-
Specification <http://speleotrove.com/decimal/decarith.html>`_.
117+
Specification <https://speleotrove.com/decimal/decarith.html>`_.
118118

119119
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
120120

Doc/library/mailbox.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
614614

615615
.. seealso::
616616

617-
`nmh - Message Handling System <http://www.nongnu.org/nmh/>`_
617+
`nmh - Message Handling System <https://www.nongnu.org/nmh/>`_
618618
Home page of :program:`nmh`, an updated version of the original :program:`mh`.
619619

620620
`MH & nmh: Email for Users & Programmers <https://rand-mh.sourceforge.io/book/>`_

Doc/library/multiprocessing.shared_memory.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ instances::
125125

126126

127127
The following example demonstrates a practical use of the :class:`SharedMemory`
128-
class with `NumPy arrays <https://www.numpy.org/>`_, accessing the
128+
class with `NumPy arrays <https://numpy.org/>`_, accessing the
129129
same ``numpy.ndarray`` from two distinct Python shells:
130130

131131
.. doctest::

Doc/library/pickle.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Comparison with ``json``
9090
^^^^^^^^^^^^^^^^^^^^^^^^
9191

9292
There are fundamental differences between the pickle protocols and
93-
`JSON (JavaScript Object Notation) <http://json.org>`_:
93+
`JSON (JavaScript Object Notation) <https://json.org>`_:
9494

9595
* JSON is a text serialization format (it outputs unicode text, although
9696
most of the time it is then encoded to ``utf-8``), while pickle is

0 commit comments

Comments
 (0)