Searched refs:total_args (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
H A Dcodeobject.c144 Py_ssize_t total_args = argcount + kwonlyargcount + local
156 for (j = 0; j < total_args; j++) {
/external/python/cpython3/Python/
H A Dceval.c3878 const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount; local
3903 i = total_args;
3932 SETLOCAL(total_args, u);
3958 for (j = 0; j < total_args; j++) {
3966 for (j = 0; j < total_args; j++) {
3977 if (j >= total_args && kwdict == NULL) {
4035 for (i = co->co_argcount; i < total_args; i++) {

Completed in 130 milliseconds