mirror of
https://github.com/python/cpython.git
synced 2026-05-07 21:20:55 -04:00
a9efb2f56e
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