8000 gh-96959: Update more HTTP links (GH-97536) · python/cpython@dd53b79 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit dd53b79

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.
1 parent adbed2d commit dd53b79

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
@@ -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

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
@@ -2269,7 +2269,7 @@ to stdout. Otherwise, the content is read from stdin.
22692269
code that generated them. This is helpful for tools that make source code
22702270
transformations.
22712271

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

Doc/library/json.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ See :ref:`json-commandline` for detailed documentation.
125125

126126
.. note::
127127

128-
JSON is a subset of `YAML <http://yaml.org/>`_ 1.2. The JSON produced by
128+
JSON is a subset of `YAML <https://yaml.org/>`_ 1.2. The JSON produced by
129129
this module's default settings (in particular, the default *separators*
130130
value) is also a subset of YAML 1.0 and 1.1. This module can thus also be
131131
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
@@ -568,13 +568,13 @@ Simulation of arrival times and service deliveries for a multiserver queue::
568568
`Economics Simulation
569569
<https://nbviewer.jupyter.org/url/norvig.com/ipython/Economics.ipynb>`_
570570
a simulation of a marketplace by
571-
`Peter Norvig <http://norvig.com/bio.html>`_ that shows effective
571+
`Peter Norvig <https://norvig.com/bio.html>`_ that shows effective
572572
use of many of the tools and distributions provided by this module
573573
(gauss, uniform, sample, betavariate, choice, triangular, and randrange).
574574

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

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)
0