[Python-checkins] [doc] Fix broken links to C extensions accelerating stdlib modules (#96914)

ambv webhook-mailer at python.org
Sat Oct 8 01:55:43 EDT 2022


https://github.com/python/cpython/commit/840fd19590935b91f9125bbf1cb93282d6073359
commit: 840fd19590935b91f9125bbf1cb93282d6073359
branch: main
author: partev <petrosyan at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2022-10-07T22:55:35-07:00
summary:

[doc] Fix broken links to C extensions accelerating stdlib modules (#96914)

Co-authored-by: Łukasz Langa <lukasz at langa.pl>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach at Gerlach.CAM>

files:
M Doc/license.rst

diff --git a/Doc/license.rst b/Doc/license.rst
index 00691b30ba6d..54643744dcf9 100644
--- a/Doc/license.rst
+++ b/Doc/license.rst
@@ -302,7 +302,8 @@ for third-party software incorporated in the Python distribution.
 Mersenne Twister
 ----------------
 
-The :mod:`_random` module includes code based on a download from
+The :mod:`!_random` C extension underlying the :mod:`random` module
+includes code based on a download from
 http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html. The following are
 the verbatim comments from the original code::
 
@@ -819,7 +820,8 @@ sources unless the build is configured ``--with-system-expat``::
 libffi
 ------
 
-The :mod:`_ctypes` extension is built using an included copy of the libffi
+The :mod:`!_ctypes` C extension underlying the :mod:`ctypes` module
+is built using an included copy of the libffi
 sources unless the build is configured ``--with-system-libffi``::
 
    Copyright (c) 1996-2008  Red Hat, Inc and others.
@@ -920,7 +922,8 @@ on the cfuhash project::
 libmpdec
 --------
 
-The :mod:`_decimal` module is built using an included copy of the libmpdec
+The :mod:`!_decimal` C extension underlying the :mod:`decimal` module
+is built using an included copy of the libmpdec
 library unless the build is configured ``--with-system-libmpdec``::
 
    Copyright (c) 2008-2020 Stefan Krah. All rights reserved.



More information about the Python-checkins mailing list