Skip to content

Commit 6840b61

Browse files
[3.12] GH-103484: Fix broken links reported by linkcheck (GH-124169) (#124180)
GH-103484: Fix broken links reported by linkcheck (GH-124169) (cherry picked from commit ab80c6b) Co-authored-by: Rafael Fontenelle <[email protected]>
1 parent a032a96 commit 6840b61

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Doc/library/functools.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ The :mod:`functools` module defines the following functions:
218218
cache. See :ref:`faq-cache-method-calls`
219219

220220
An `LRU (least recently used) cache
221-
<https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)>`_
221+
<https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_(LRU)>`_
222222
works best when the most recent calls are the best predictors of upcoming
223223
calls (for example, the most popular articles on a news server tend to
224224
change each day). The cache's size limit assures that the cache does not

Doc/library/ssl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2618,7 +2618,7 @@ enabled when negotiating a SSL session is possible through the
26182618
:meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the
26192619
ssl module disables certain weak ciphers by default, but you may want
26202620
to further restrict the cipher choice. Be sure to read OpenSSL's documentation
2621-
about the `cipher list format <https://www.openssl.org/docs/man1.1.1/man1/ciphers.html#CIPHER-LIST-FORMAT>`_.
2621+
about the `cipher list format <https://docs.openssl.org/1.1.1/man1/ciphers/#cipher-list-format>`_.
26222622
If you want to check which ciphers are enabled by a given cipher list, use
26232623
:meth:`SSLContext.get_ciphers` or the ``openssl ciphers`` command on your
26242624
system.

Doc/whatsnew/2.4.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ API that perform ASCII-only conversions, ignoring the locale setting:
757757
:c:expr:`double` to an ASCII string.
758758

759759
The code for these functions came from the GLib library
760-
(https://developer-old.gnome.org/glib/2.26/), whose developers kindly
760+
(`https://developer-old.gnome.org/glib/2.26/ <http://web.archive.org/web/20210306104320/https://developer.gnome.org/glib/2.26/>`__), whose developers kindly
761761
relicensed the relevant functions and donated them to the Python Software
762762
Foundation. The :mod:`locale` module can now change the numeric locale,
763763
letting extensions such as GTK+ produce the correct results.

Doc/whatsnew/3.12.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ create an interpreter with its own GIL:
359359
/* The new interpreter is now active in the current thread. */
360360
361361
For further examples how to use the C-API for sub-interpreters with a
362-
per-interpreter GIL, see :source:`Modules/_xxsubinterpretersmodule.c`.
362+
per-interpreter GIL, see ``Modules/_xxsubinterpretersmodule.c``.
363363

364364
(Contributed by Eric Snow in :gh:`104210`, etc.)
365365

Doc/whatsnew/3.2.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ for secure (encrypted, authenticated) internet connections:
16501650
* The :func:`ssl.wrap_socket() <ssl.SSLContext.wrap_socket>` constructor function now takes a *ciphers*
16511651
argument. The *ciphers* string lists the allowed encryption algorithms using
16521652
the format described in the `OpenSSL documentation
1653-
<https://www.openssl.org/docs/man1.0.2/man1/ciphers.html#CIPHER-LIST-FORMAT>`__.
1653+
<https://docs.openssl.org/1.0.2/man1/ciphers/#cipher-list-format>`__.
16541654

16551655
* When linked against recent versions of OpenSSL, the :mod:`ssl` module now
16561656
supports the Server Name Indication extension to the TLS protocol, allowing

Doc/whatsnew/3.4.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1962,7 +1962,7 @@ Other Improvements
19621962
<https://devguide.python.org/coverage/#measuring-coverage-of-c-code-with-gcov-and-lcov>`_
19631963
will build python, run the test suite, and generate an HTML coverage report
19641964
for the C codebase using ``gcov`` and `lcov
1965-
<https://ltp.sourceforge.net/coverage/lcov.php>`_.
1965+
<https://github.com/linux-test-project/lcov>`_.
19661966

19671967
* The ``-R`` option to the :ref:`python regression test suite <regrtest>` now
19681968
also checks for memory allocation leaks, using

0 commit comments

Comments
 (0)