diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-05-25 15:49:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 15:49:35 (GMT) |
commit | 9a5e643483578c3a944ceb5aa511d6c24280aedc (patch) | |
tree | fe7fab4b38e3aed958becb77d9c82365a5514944 | |
parent | 20b2bf318345170502b9840673594a5a12a40829 (diff) | |
download | cpython-9a5e643483578c3a944ceb5aa511d6c24280aedc.zip cpython-9a5e643483578c3a944ceb5aa511d6c24280aedc.tar.gz cpython-9a5e643483578c3a944ceb5aa511d6c24280aedc.tar.bz2 |
bpo-39245: Fix docs links to the stable ABI (GH-20388)
Automerge-Triggered-By: @vstinner
(cherry picked from commit e50883ccc4bfa198c3d5e3367306324fc49730cb)
Co-authored-by: Miro HronĨok <miro@hroncok.cz>
-rw-r--r-- | Doc/c-api/call.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/c-api/call.rst b/Doc/c-api/call.rst index 06db126..0832e7e 100644 --- a/Doc/c-api/call.rst +++ b/Doc/c-api/call.rst @@ -144,7 +144,7 @@ Vectorcall Support API However, the function ``PyVectorcall_NARGS`` should be used to allow for future extensions. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.8 @@ -158,7 +158,7 @@ Vectorcall Support API This is mostly useful to check whether or not *op* supports vectorcall, which can be done by checking ``PyVectorcall_Function(op) != NULL``. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.8 @@ -172,7 +172,7 @@ Vectorcall Support API It does not check the :const:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does not fall back to ``tp_call``. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.8 @@ -256,7 +256,7 @@ please see individual documentation for details. Return the result of the call on success, or raise an exception and return *NULL* on failure. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 @@ -343,7 +343,7 @@ please see individual documentation for details. Return the result of the call on success, or raise an exception and return *NULL* on failure. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 @@ -357,7 +357,7 @@ please see individual documentation for details. Return the result of the call on success, or raise an exception and return *NULL* on failure. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 @@ -372,7 +372,7 @@ please see individual documentation for details. Return the result of the call on success, or raise an exception and return *NULL* on failure. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 @@ -388,7 +388,7 @@ please see individual documentation for details. already has a dictionary ready to use for the keyword arguments, but not a tuple for the positional arguments. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 @@ -410,7 +410,7 @@ please see individual documentation for details. Return the result of the call on success, or raise an exception and return *NULL* on failure. - This function is not part of the `limited API <stable>`_. + This function is not part of the :ref:`limited API <stable>`. .. versionadded:: 3.9 |