diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-10-11 12:57:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 12:57:51 (GMT) |
commit | d1f7fae424d51b0374c8204599583c4a26c1a992 (patch) | |
tree | 96c0bb35477f8d70dd8fcb0cb338e09ba236d609 /Doc/whatsnew/3.8.rst | |
parent | f83fa0b9eb1c11a4ef53275d77c603b97335eb23 (diff) | |
download | cpython-d1f7fae424d51b0374c8204599583c4a26c1a992.zip cpython-d1f7fae424d51b0374c8204599583c4a26c1a992.tar.gz cpython-d1f7fae424d51b0374c8204599583c4a26c1a992.tar.bz2 |
GH-107518: Remove the Argument Clinic How-To (#109900)
* Remove the content of the Argument Clinic HOWTO
* Update cross-references to the Argument Clinic
* Add a note directing readers to the devguide
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index e15180c..a2a6726 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' -:ref:`Argument Clinic <howto-clinic>` tool. +`Argument Clinic <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 |