Skip to content

Commit 2e315d8

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 <[email protected]>
1 parent 6a41d11 commit 2e315d8

22 files changed

+101
-101
lines changed

Doc/faq/extending.rst

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ Consulting the proceedings for `past Python conferences
335335
different companies and organizations.
336336

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

Doc/faq/gui.rst

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2237,7 +2237,7 @@ to stdout. Otherwise, the content is read from stdin.
22372237
code that generated them. This is helpful for tools that make source code
22382238
transformations.
22392239

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

Doc/library/json.rst

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

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

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

Doc/library/tkinter.rst

Lines changed: 1 addition & 1 deletion
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)