Files
cpython/Objects
Victor Stinner a9efb2f56e Add METH_FASTCALL calling convention
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.
2016-09-09 17:40:22 -07:00
..
2016-09-09 13:54:34 -07:00
2016-09-09 13:54:34 -07:00
2016-09-09 13:54:34 -07:00
2016-09-09 19:28:36 -07:00
2016-09-07 09:26:18 -07:00
2016-08-21 17:43:58 +10:00
2016-09-07 14:12:36 -07:00
2016-09-07 17:40:12 -07:00
2016-09-07 09:26:18 -07:00
2016-09-09 13:54:34 -07:00

Source files for various builtin objects