Skip to content

Commit 3f1b6ef

Browse files
authored
Docs: fix broken links (#116651)
1 parent 93a687a commit 3f1b6ef

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Doc/faq/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ to learn Python's C API.
5050
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
53-
<https://riverbankcomputing.com/software/sip/intro>`__, `CXX
53+
<https://github.com/Python-SIP/sip>`__, `CXX
5454
<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

Doc/library/math.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ Special functions
592592

593593
The :func:`erf` function can be used to compute traditional statistical
594594
functions such as the `cumulative standard normal distribution
595-
<https://en.wikipedia.org/wiki/Normal_distribution#Cumulative_distribution_functions>`_::
595+
<https://en.wikipedia.org/wiki/Cumulative_distribution_function>`_::
596596

597597
def phi(x):
598598
'Cumulative distribution function for the standard normal distribution'

Doc/library/pathlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
.. versionadded:: 3.4
99

10-
**Source code:** :source:`Lib/pathlib.py`
10+
**Source code:** :source:`Lib/pathlib/`
1111

1212
.. index:: single: path; operations
1313

Doc/library/sqlite3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ Connection objects
11351135
.. versionchanged:: 3.12
11361136
Added the *entrypoint* parameter.
11371137

1138-
.. _Loading an Extension: https://www.sqlite.org/loadext.html#loading_an_extension_
1138+
.. _Loading an Extension: https://www.sqlite.org/loadext.html#loading_an_extension
11391139

11401140
.. method:: iterdump(*, filter=None)
11411141

Doc/library/venv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ See :pep:`405` for more background on Python virtual environments.
5454
.. seealso::
5555

5656
`Python Packaging User Guide: Creating and using virtual environments
57-
<https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment>`__
57+
<https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments>`__
5858

5959
.. include:: ../includes/wasm-notavail.rst
6060

0 commit comments

Comments
 (0)