https://github.com/python/cpython/commit/3f1b6efee95c06f8912bcea4031afacdbc0d5684
commit: 3f1b6efee95c06f8912bcea4031afacdbc0d5684
branch: main
author: Mariusz Felisiak <[email protected]>
committer: JelleZijlstra <[email protected]>
date: 2024-03-12T21:19:33-07:00
summary:

Docs: fix broken links (#116651)

files:
M Doc/faq/extending.rst
M Doc/library/math.rst
M Doc/library/pathlib.rst
M Doc/library/sqlite3.rst
M Doc/library/venv.rst

diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index 2a8b976925d042..1cff2c4091df06 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 3c850317f60858..93755be717e2ef 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/pathlib.rst b/Doc/library/pathlib.rst
index 4b461a5d4a2949..9041f37bd668fa 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -7,7 +7,7 @@
 
 .. versionadded:: 3.4
 
-**Source code:** :source:`Lib/pathlib.py`
+**Source code:** :source:`Lib/pathlib/`
 
 .. index:: single: path; operations
 
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 87d5ef1e42ca3a..e76dc91bf2d875 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1135,7 +1135,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(*, filter=None)
 
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index 2e7ff345a06234..a4273f97b7a8db 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
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to