[Python-checkins] (no subject)

Miro Hrončok webhook-mailer at python.org
Mon May 25 11:42:56 EDT 2020




To: python-checkins at python.org
Subject: bpo-39245: Fix docs links to the stable ABI (GH-20388)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/e50883ccc4bfa198c3d5e3367306324fc497=
30cb
commit: e50883ccc4bfa198c3d5e3367306324fc49730cb
branch: master
author: Miro Hron=C4=8Dok <miro at hroncok.cz>
committer: GitHub <noreply at github.com>
date: 2020-05-25T08:42:48-07:00
summary:

bpo-39245: Fix docs links to the stable ABI (GH-20388)



Automerge-Triggered-By: @vstinner

files:
M Doc/c-api/call.rst

diff --git a/Doc/c-api/call.rst b/Doc/c-api/call.rst
index 06db12666d787..0832e7e219360 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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.8
=20
@@ -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) !=3D NULL``.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.8
=20
@@ -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``.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.8
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20
@@ -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.
=20
-   This function is not part of the `limited API <stable>`_.
+   This function is not part of the :ref:`limited API <stable>`.
=20
    .. versionadded:: 3.9
=20



More information about the Python-checkins mailing list