gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)

This commit is contained in:
Petr Viktorin 2022-08-08 14:12:05 +02:00 committed by GitHub
parent cc9160a29b
commit 656dad702d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 152 additions and 13 deletions

View file

@ -6865,6 +6865,9 @@ PyInit__testcapi(void)
if (_PyTestCapi_Init_Vectorcall(m) < 0) {
return NULL;
}
if (_PyTestCapi_Init_VectorcallLimited(m) < 0) {
return NULL;
}
if (_PyTestCapi_Init_Heaptype(m) < 0) {
return NULL;
}