summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-03-13 04:37:38 (GMT)
committerGitHub <noreply@github.com>2024-03-13 04:37:38 (GMT)
commit982ff4a4b7282a104bf7827282698a1e39983c65 (patch)
tree950a8376787fb18c4c7cd92f80302d46180ac298
parent9f38686f6298c656adab7ca09cb235cdef3494e5 (diff)
downloadcpython-982ff4a4b7282a104bf7827282698a1e39983c65.zip
cpython-982ff4a4b7282a104bf7827282698a1e39983c65.tar.gz
cpython-982ff4a4b7282a104bf7827282698a1e39983c65.tar.bz2
[3.12] Docs: fix broken links (GH-116651) (#116700)
(cherry picked from commit 3f1b6efee95c06f8912bcea4031afacdbc0d5684) Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
-rw-r--r--Doc/faq/extending.rst2
-rw-r--r--Doc/library/math.rst2
-rw-r--r--Doc/library/sqlite3.rst2
-rw-r--r--Doc/library/venv.rst2
4 files changed, 4 insertions, 4 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index 2a8b976..1cff2c4 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -50,7 +50,7 @@ to learn Python's C API.
If you need to interface to some C or C++ library for which no Python extension
currently exists, you can try wrapping the library's data types and functions
with a tool such as `SWIG <https://www.swig.org>`_. `SIP
-<https://riverbankcomputing.com/software/sip/intro>`__, `CXX
+<https://github.com/Python-SIP/sip>`__, `CXX
<https://cxx.sourceforge.net/>`_ `Boost
<https://www.boost.org/libs/python/doc/index.html>`_, or `Weave
<https://github.com/scipy/weave>`_ are also
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 55a5740..32fbf1c 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -592,7 +592,7 @@ Special functions
The :func:`erf` function can be used to compute traditional statistical
functions such as the `cumulative standard normal distribution
- <https://en.wikipedia.org/wiki/Normal_distribution#Cumulative_distribution_functions>`_::
+ <https://en.wikipedia.org/wiki/Cumulative_distribution_function>`_::
def phi(x):
'Cumulative distribution function for the standard normal distribution'
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index bd45cc8..4c71e52 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1104,7 +1104,7 @@ Connection objects
.. versionchanged:: 3.12
Added the *entrypoint* parameter.
- .. _Loading an Extension: https://www.sqlite.org/loadext.html#loading_an_extension_
+ .. _Loading an Extension: https://www.sqlite.org/loadext.html#loading_an_extension
.. method:: iterdump
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index 80eb0a9..f1189cb 100644
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -54,7 +54,7 @@ See :pep:`405` for more background on Python virtual environments.
.. seealso::
`Python Packaging User Guide: Creating and using virtual environments
- <https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment>`__
+ <https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments>`__
.. include:: ../includes/wasm-notavail.rst