mirror of
https://github.com/python/cpython.git
synced 2025-11-26 13:22:51 +00:00
gh-106320: Remove _PyFunction_Vectorcall() API (#107071)
Move _PyFunction_Vectorcall() API to the internal C API. No longer export the function.
This commit is contained in:
parent
c1331ad508
commit
889851ecc3
3 changed files with 7 additions and 6 deletions
|
|
@ -8,6 +8,12 @@ extern "C" {
|
|||
# error "this header requires Py_BUILD_CORE define"
|
||||
#endif
|
||||
|
||||
extern PyObject* _PyFunction_Vectorcall(
|
||||
PyObject *func,
|
||||
PyObject *const *stack,
|
||||
size_t nargsf,
|
||||
PyObject *kwnames);
|
||||
|
||||
#define FUNC_MAX_WATCHERS 8
|
||||
|
||||
struct _py_func_state {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue