Skip to content

Commit dfe23ee

Browse files
gh-96959: Update more HTTP links (GH-97536)
Use HTTPS for documents which are available by both HTTP and HTTPS links, but there is no redirection from HTTP to HTTPS or vice versa. (cherry picked from commit dd53b79) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 9a9bf88 commit dfe23ee

22 files changed

+101
-101
lines changed

Doc/faq/extending.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If you need to interface to some C or C++ library for which no Python extension
5151
currently exists, you can try wrapping the library's data types and functions
5252
with a tool such as `SWIG <https://www.swig.org>`_. `SIP
5353
<https://riverbankcomputing.com/software/sip/intro>`__, `CXX
54-
<http://cxx.sourceforge.net/>`_ `Boost
54+
<https://cxx.sourceforge.net/>`_ `Boost
5555
<https://www.boost.org/libs/python/doc/index.html>`_, or `Weave
5656
<https://github.com/scipy/weave>`_ are also
5757
alternatives for wrapping C++ libraries.

Doc/faq/general.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ Consulting the proceedings for `past Python conferences
329329
different companies and organizations.
330330

331331
High-profile Python projects include `the Mailman mailing list manager
332-
<http://www.list.org>`_ and `the Zope application server
332+
<https://www.list.org>`_ and `the Zope application server
333333
<https://www.zope.dev>`_. Several Linux distributions, most notably `Red Hat
334334
<https://www.redhat.com>`_, have written part or all of their installer and
335335
system administration software in Python. Companies that use Python internally

Doc/faq/gui.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ environment variables.
4949
To get truly stand-alone applications, the Tcl scripts that form the library
5050
have to be integrated into the application as well. One tool supporting that is
5151
SAM (stand-alone modules), which is part of the Tix distribution
52-
(http://tix.sourceforge.net/).
52+
(https://tix.sourceforge.net/).
5353

5454
Build Tix with SAM enabled, perform the appropriate call to
5555
:c:func:`Tclsam_init`, etc. inside Python's

Doc/faq/library.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ How do I create documentation from doc strings?
180180
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
183-
docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx
183+
docstrings is `epydoc <https://epydoc.sourceforge.net/>`_. `Sphinx
184184
<https://www.sphinx-doc.org>`_ can also include docstring content.
185185
186186

Doc/faq/programming.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ debugging non-PythonWin programs. PythonWin is available as part of
3535
as a part of the
3636
`ActivePython <https://www.activestate.com/products/python/>`_ distribution.
3737

38-
`Eric <http://eric-ide.python-projects.org/>`_ is an IDE built on PyQt
38+
`Eric <https://eric-ide.python-projects.org/>`_ is an IDE built on PyQt
3939
and the Scintilla editing component.
4040

4141
`trepan3k <https://github.com/rocky/python3-trepan/>`_ is a gdb-like debugger.
@@ -99,7 +99,7 @@ executables:
9999
* `PyOxidizer <https://pyoxidizer.readthedocs.io/en/stable/>`_ (Cross-platform)
100100
* `cx_Freeze <https://marcelotduarte.github.io/cx_Freeze/>`_ (Cross-platform)
101101
* `py2app <https://github.com/ronaldoussoren/py2app>`_ (macOS only)
102-
* `py2exe <http://www.py2exe.org/>`_ (Windows only)
102+
* `py2exe <https://www.py2exe.org/>`_ (Windows only)
103103

104104
Are there coding standards or a style guide for Python programs?
105105
----------------------------------------------------------------

Doc/library/ast.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2268,7 +2268,7 @@ to stdout. Otherwise, the content is read from stdin.
22682268
code that generated them. This is helpful for tools that make source code
22692269
transformations.
22702270

2271-
`leoAst.py <http://leoeditor.com/appendices.html#leoast-py>`_ unifies the
2271+
`leoAst.py <https://leoeditor.com/appendices.html#leoast-py>`_ unifies the
22722272
token-based and parse-tree-based views of python programs by inserting
22732273
two-way links between tokens and ast nodes.
22742274

Doc/library/json.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ See :ref:`json-commandline` for detailed documentation.
120120

121121
.. note::
122122

123-
JSON is a subset of `YAML <http://yaml.org/>`_ 1.2. The JSON produced by
123+
JSON is a subset of `YAML <https://yaml.org/>`_ 1.2. The JSON produced by
124124
this module's default settings (in particular, the default *separators*
125125
value) is also a subset of YAML 1.0 and 1.1. This module can thus also be
126126
used as a YAML serializer.

Doc/library/mailbox.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
426426

427427
.. seealso::
428428

429-
`maildir man page from Courier <http://www.courier-mta.org/maildir.html>`_
429+
`maildir man page from Courier <https://www.courier-mta.org/maildir.html>`_
430430
A specification of the format. Describes a common extension for
431431
supporting folders.
432432

Doc/library/random.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -550,13 +550,13 @@ Simulation of arrival times and service deliveries for a multiserver queue::
550550
`Economics Simulation
551551
<https://nbviewer.jupyter.org/url/norvig.com/ipython/Economics.ipynb>`_
552552
a simulation of a marketplace by
553-
`Peter Norvig <http://norvig.com/bio.html>`_ that shows effective
553+
`Peter Norvig <https://norvig.com/bio.html>`_ that shows effective
554554
use of many of the tools and distributions provided by this module
555555
(gauss, uniform, sample, betavariate, choice, triangular, and randrange).
556556

557557
`A Concrete Introduction to Probability (using Python)
558558
<https://nbviewer.jupyter.org/url/norvig.com/ipython/Probability.ipynb>`_
559-
a tutorial by `Peter Norvig <http://norvig.com/bio.html>`_ covering
559+
a tutorial by `Peter Norvig <https://norvig.com/bio.html>`_ covering
560560
the basics of probability theory, how to write simulations, and
561561
how to perform data analysis using Python.
562562

Doc/library/tkinter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ details that are unchanged.
3838

3939
.. seealso::
4040

41-
* `TkDocs <http://tkdocs.com/>`_
41+
* `TkDocs <https://tkdocs.com/>`_
4242
Extensive tutorial on creating user interfaces with Tkinter. Explains key concepts,
4343
and illustrates recommended approaches using the modern API.
4444

0 commit comments

Comments
 (0)