@@ -144,8 +144,6 @@ Vectorcall Support API
144
144
However, the function ``PyVectorcall_NARGS`` should be used to allow
145
145
for future extensions.
146
146
147
- This function is not part of the :ref:`limited API <stable>`.
148
-
149
147
.. versionadded:: 3.8
150
148
151
149
.. c:function:: vectorcallfunc PyVectorcall_Function(PyObject *op)
@@ -158,8 +156,6 @@ Vectorcall Support API
158
156
This is mostly useful to check whether or not *op* supports vectorcall,
159
157
which can be done by checking ``PyVectorcall_Function(op) != NULL``.
160
158
161
- This function is not part of the :ref:`limited API <stable>`.
162
-
163
159
.. versionadded:: 3.8
164
160
165
161
.. c:function:: PyObject* PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *dict)
@@ -172,8 +168,6 @@ Vectorcall Support API
172
168
It does not check the :const: `Py_TPFLAGS_HAVE_VECTORCALL ` flag
173
169
and it does not fall back to ``tp_call ``.
174
170
175
- This function is not part of the :ref: `limited API <stable >`.
176
-
177
171
.. versionadded :: 3.8
178
172
179
173
@@ -256,8 +250,6 @@ please see individual documentation for details.
256
250
Return the result of the call on success, or raise an exception and return
257
251
*NULL * on failure.
258
252
259
- This function is not part of the :ref: `limited API <stable >`.
260
-
261
253
.. versionadded :: 3.9
262
254
263
255
@@ -343,8 +335,6 @@ please see individual documentation for details.
343
335
Return the result of the call on success, or raise an exception and return
344
336
*NULL * on failure.
345
337
346
- This function is not part of the :ref: `limited API <stable >`.
347
-
348
338
.. versionadded :: 3.9
349
339
350
340
@@ -357,8 +347,6 @@ please see individual documentation for details.
357
347
Return the result of the call on success, or raise an exception and return
358
348
*NULL * on failure.
359
349
360
- This function is not part of the :ref: `limited API <stable >`.
361
-
362
350
.. versionadded :: 3.9
363
351
364
352
@@ -372,8 +360,6 @@ please see individual documentation for details.
372
360
Return the result of the call on success, or raise an exception and return
373
361
*NULL * on failure.
374
362
375
- This function is not part of the :ref: `limited API <stable >`.
376
-
377
363
.. versionadded :: 3.9
378
364
379
365
.. c :function :: PyObject* PyObject_VectorcallDict (PyObject *callable, PyObject *const *args, size_t nargsf, PyObject *kwdict)
@@ -388,8 +374,6 @@ please see individual documentation for details.
388
374
already has a dictionary ready to use for the keyword arguments,
389
375
but not a tuple for the positional arguments.
390
376
391
- This function is not part of the :ref: `limited API <stable >`.
392
-
393
377
.. versionadded :: 3.9
394
378
395
379
.. c :function :: PyObject* PyObject_VectorcallMethod (PyObject *name, PyObject *const *args, size_t nargsf, PyObject *kwnames)
@@ -410,8 +394,6 @@ please see individual documentation for details.
410
394
Return the result of the call on success, or raise an exception and return
411
395
*NULL * on failure.
412
396
413
- This function is not part of the :ref: `limited API <stable >`.
414
-
415
397
.. versionadded :: 3.9
416
398
417
399
0 commit comments