Searched refs:defcount (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Python/ |
D | ceval.c | 4619 Py_ssize_t missing, Py_ssize_t defcount, in missing_arguments() argument 4624 int positional = (defcount != -1); in missing_arguments() 4634 end = co->co_argcount - defcount; in missing_arguments() 4674 Py_ssize_t defcount = defaults == NULL ? 0 : PyTuple_GET_SIZE(defaults); in too_many_positional() local 4675 if (defcount) { in too_many_positional() 4676 Py_ssize_t atleast = co_argcount - defcount; in too_many_positional() 4918 Py_ssize_t defcount = con->fc_defaults == NULL ? 0 : PyTuple_GET_SIZE(con->fc_defaults); in _PyEval_MakeFrameVector() local 4919 Py_ssize_t m = co->co_argcount - defcount; in _PyEval_MakeFrameVector() 4927 missing_arguments(tstate, co, missing, defcount, fastlocals, in _PyEval_MakeFrameVector() 4935 if (defcount) { in _PyEval_MakeFrameVector() [all …]
|
/third_party/python/Lib/ |
D | inspect.py | 1471 def _too_many(f_name, args, kwonly, varargs, defcount, given, values): argument 1472 atleast = len(args) - defcount 1477 elif defcount:
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 278 …argcount, PyObject *const *kws, int kwcount, PyObject *const *defs, int defcount, PyObject *kwdefs…
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 817 PyEval_EvalCodeEx:int:defcount::
|