mirror of
https://github.com/python/cpython.git
synced 2026-01-27 21:25:12 +00:00
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.
Miscellaneous source files for the main Python shared library