Message273374
> _PyObject_FastCallKeywords(PyObject **args, int nargs, PyObject **kwargs, int nkwargs): nkwargs is the number of (key, value) pairs
Hum, I don't know if it's worth to "split" the C array into two parts. Maybe it can be just:
_PyObject_FastCallKeywords(PyObject **args, int nargs, int nkwargs);
As current used in Python/ceval.c. |
|
| Date |
User |
Action |
Args |
| 2016-08-22 13:23:45 | vstinner | set | recipients:
+ vstinner, scoder, serhiy.storchaka |
| 2016-08-22 13:23:45 | vstinner | set | messageid: <[email protected]> |
| 2016-08-22 13:23:45 | vstinner | link | issue27809 messages |
| 2016-08-22 13:23:45 | vstinner | create | |
|