diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-08-08 12:12:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 12:12:05 (GMT) |
commit | 656dad702d3b25bf678ee9bd7109d98876946258 (patch) | |
tree | d532248aca4a64f0ad9fb431f34398c1afc05ff5 /PC | |
parent | cc9160a29bc3356ced92348bcd8e6668c67167c9 (diff) | |
download | cpython-656dad702d3b25bf678ee9bd7109d98876946258.zip cpython-656dad702d3b25bf678ee9bd7109d98876946258.tar.gz cpython-656dad702d3b25bf678ee9bd7109d98876946258.tar.bz2 |
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/python3dll.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/python3dll.c b/PC/python3dll.c index 024ec49..89bbd05 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -723,6 +723,8 @@ EXPORT_FUNC(PyUnicodeTranslateError_GetStart) EXPORT_FUNC(PyUnicodeTranslateError_SetEnd) EXPORT_FUNC(PyUnicodeTranslateError_SetReason) EXPORT_FUNC(PyUnicodeTranslateError_SetStart) +EXPORT_FUNC(PyVectorcall_Call) +EXPORT_FUNC(PyVectorcall_NARGS) EXPORT_FUNC(PyWeakref_GetObject) EXPORT_FUNC(PyWeakref_NewProxy) EXPORT_FUNC(PyWeakref_NewRef) |