]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Fix external link to devguide.python.org (GH-112899)
authorMiro Hrončok <miro@hroncok.cz>
Wed, 13 Dec 2023 19:37:13 +0000 (20:37 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Dec 2023 19:37:13 +0000 (11:37 -0800)
Doc/whatsnew/3.8.rst

index 4574702b1a600f7cc071ec0e9b82ff944f0513a4..e4dcb9bf872e286c83ada3212b06aa05f4150655 100644 (file)
@@ -123,7 +123,7 @@ There is a new function parameter syntax ``/`` to indicate that some
 function parameters must be specified positionally and cannot be used as
 keyword arguments.  This is the same notation shown by ``help()`` for C
 functions annotated with Larry Hastings'
-`Argument Clinic <devguide.python.org/development-tools/clinic/>`__ tool.
+`Argument Clinic <https://devguide.python.org/development-tools/clinic/>`__ tool.
 
 In the following example, parameters *a* and *b* are positional-only,
 while *c* or *d* can be positional or keyword, and *e* or *f* are