Searched defs:co_argcount (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Include/
H A Dcode.h12 int co_argcount; /* #arguments, except *args */ member in struct:__anon19226
/external/python/cpython3/Include/
H A Dcode.h23 int co_argcount; /* #arguments, except *args */ member in struct:__anon19788
/external/python/cpython3/Python/
H A Dceval.c3781 end = co->co_argcount - defcount;
3784 start = co->co_argcount;
3811 Py_ssize_t co_argcount = co->co_argcount; local
3815 for (i = co_argcount; i < co_argcount + co->co_kwonlyargcount; i++) {
3821 Py_ssize_t atleast = co_argcount - defcount;
3823 sig = PyUnicode_FromFormat("from %zd to %zd", atleast, co_argcount);
3826 plural = (co_argcount != 1);
3827 sig = PyUnicode_FromFormat("%zd", co_argcount);
[all...]

Completed in 512 milliseconds