You need to sign in or sign up before continuing.
  • Victor Stinner's avatar
    Add METH_FASTCALL calling convention · a9efb2f5
    Victor Stinner authored
    Issue #27810: Add a new calling convention for C functions:
    
        PyObject* func(PyObject *self, PyObject **args,
                       Py_ssize_t nargs, PyObject *kwnames);
    
    Where args is a C array of positional arguments followed by values of keyword
    arguments. nargs is the number of positional arguments, kwnames are keys of
    keyword arguments. kwnames can be NULL.
    a9efb2f5