[3.12] Docs: Fix external link to devguide.python.org (GH-112899) (#113065)

Co-authored-by: Miro Hrončok <miro@hroncok.cz>
This commit is contained in:
Miss Islington (bot) 2023-12-13 20:48:43 +01:00 committed by GitHub
parent 34714f4ac9
commit d84aa5cd28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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