From: Miro HronĨok Date: Wed, 13 Dec 2023 19:37:13 +0000 (+0100) Subject: Docs: Fix external link to devguide.python.org (GH-112899) X-Git-Tag: v3.13.0a3~397 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85923cb377c4a13720c135da9ae3ed93465a81e7;p=thirdparty%2FPython%2Fcpython.git Docs: Fix external link to devguide.python.org (GH-112899) --- diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 4574702b1a60..e4dcb9bf872e 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -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 `__ tool. +`Argument 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