Docs: Fix external link to devguide.python.org (GH-112899)

This commit is contained in:
Miro Hrončok 2023-12-13 20:37:13 +01:00 committed by GitHub
parent d05a180350
commit 85923cb377
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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