Home
last modified time | relevance | path

Searched refs:tp_vectorcall (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/cpython/
Dobject.h273 vectorcallfunc tp_vectorcall; member
/external/python/cpython3/Doc/c-api/
Dtype.rst237 * :c:member:`~PyTypeObject.tp_vectorcall`
Dtypeobj.rst148 …| :c:member:`~PyTypeObject.tp_vectorcall` | :c:type:`vectorcallfunc` | …
1903 .. c:member:: vectorcallfunc PyTypeObject.tp_vectorcall
1908 If ``tp_vectorcall`` is ``NULL``, the default call implementation
/external/python/cpython3/Objects/
Dtupleobject.c891 .tp_vectorcall = tuple_vectorcall,
Drangeobject.c737 .tp_vectorcall = (vectorcallfunc)range_vectorcall
Dsetobject.c2133 .tp_vectorcall = set_vectorcall,
2233 .tp_vectorcall = frozenset_vectorcall,
Dlistobject.c3063 .tp_vectorcall = list_vectorcall,
Ddictobject.c3459 .tp_vectorcall = dict_vectorcall,
Dtypeobject.c3750 offsetof(PyTypeObject, tp_vectorcall), /* tp_vectorcall_offset */
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst5660 ``tp_vectorcall`` to a vectorcall function to be used instead of ``tp_new``