-
-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
18 changed files
with
152 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
Misc/NEWS.d/next/C API/2022-08-01-16-21-39.gh-issue-93274.QoDHEu.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
API for implementing vectorcall (:c:data:`Py_TPFLAGS_HAVE_VECTORCALL`, | ||
:c:func:`PyVectorcall_NARGS` and :c:func:`PyVectorcall_Call`) was added to | ||
the limited API and stable ABI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include "Python.h" | ||
|
||
int _PyTestCapi_Init_Vectorcall(PyObject *module); | ||
int _PyTestCapi_Init_VectorcallLimited(PyObject *module); | ||
int _PyTestCapi_Init_Heaptype(PyObject *module); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#define Py_LIMITED_API 0x030c0000 // 3.12 | ||
#include "parts.h" | ||
#include "structmember.h" // PyMemberDef | ||
|
||
/* Test Vectorcall in the limited API */ | ||
|
||
static PyObject * | ||
LimitedVectorCallClass_tpcall(PyObject *self, PyObject *args, PyObject *kwargs) { | ||
return PyUnicode_FromString("tp_call called"); | ||
} | ||
|
||
static PyObject * | ||
LimitedVectorCallClass_vectorcall(PyObject *callable, | ||
PyObject *const *args, | ||
size_t nargsf, | ||
PyObject *kwnames) { | ||
return PyUnicode_FromString("vectorcall called"); | ||
} | ||
|
||
static PyObject * | ||
LimitedVectorCallClass_new(PyTypeObject *tp, PyTypeObject *a, PyTypeObject *kw) | ||
{ | ||
PyObject *self = ((allocfunc)PyType_GetSlot(tp, Py_tp_alloc))(tp, 0); | ||
if (!self) { | ||
return NULL; | ||
} | ||
*(vectorcallfunc*)((char*)self + sizeof(PyObject)) = ( | ||
LimitedVectorCallClass_vectorcall); | ||
return self; | ||
} | ||
|
||
static PyMemberDef LimitedVectorCallClass_members[] = { | ||
{"__vectorcalloffset__", T_PYSSIZET, sizeof(PyObject), READONLY}, | ||
{NULL} | ||
}; | ||
|
||
static PyType_Slot LimitedVectorallClass_slots[] = { | ||
{Py_tp_new, LimitedVectorCallClass_new}, | ||
{Py_tp_call, LimitedVectorCallClass_tpcall}, | ||
{Py_tp_members, LimitedVectorCallClass_members}, | ||
{0}, | ||
}; | ||
|
||
static PyType_Spec LimitedVectorCallClass_spec = { | ||
.name = "_testcapi.LimitedVectorCallClass", | ||
.basicsize = (int)(sizeof(PyObject) + sizeof(vectorcallfunc)), | ||
.flags = Py_TPFLAGS_DEFAULT | ||
| Py_TPFLAGS_HAVE_VECTORCALL | ||
| Py_TPFLAGS_BASETYPE, | ||
.slots = LimitedVectorallClass_slots, | ||
}; | ||
|
||
static PyMethodDef TestMethods[] = { | ||
/* Add module methods here. | ||
* (Empty list left here as template/example, since using | ||
* PyModule_AddFunctions isn't very common.) | ||
*/ | ||
{NULL}, | ||
}; | ||
|
||
int | ||
_PyTestCapi_Init_VectorcallLimited(PyObject *m) { | ||
if (PyModule_AddFunctions(m, TestMethods) < 0) { | ||
return -1; | ||
} | ||
|
||
PyObject *LimitedVectorCallClass = PyType_FromModuleAndSpec( | ||
m, &LimitedVectorCallClass_spec, NULL); | ||
if (!LimitedVectorCallClass) { | ||
return -1; | ||
} | ||
if (PyModule_AddType(m, (PyTypeObject *)LimitedVectorCallClass) < 0) { | ||
return -1; | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters