Home
last modified time | relevance | path

Searched refs:defcount (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Python/
Dceval.c3766 missing_arguments(PyCodeObject *co, Py_ssize_t missing, Py_ssize_t defcount, in missing_arguments() argument
3771 int positional = (defcount != -1); in missing_arguments()
3781 end = co->co_argcount - defcount; in missing_arguments()
3804 too_many_positional(PyCodeObject *co, Py_ssize_t given, Py_ssize_t defcount, in too_many_positional() argument
3820 if (defcount) { in too_many_positional()
3821 Py_ssize_t atleast = co_argcount - defcount; in too_many_positional()
3868 PyObject **defs, Py_ssize_t defcount, in _PyEval_EvalCodeWithName() argument
4002 too_many_positional(co, argcount, defcount, fastlocals); in _PyEval_EvalCodeWithName()
4008 Py_ssize_t m = co->co_argcount - defcount; in _PyEval_EvalCodeWithName()
4016 missing_arguments(co, missing, defcount, fastlocals); in _PyEval_EvalCodeWithName()
[all …]
/external/python/cpython2/Python/
Dceval.c3349 PyObject **defs, int defcount, PyObject *closure) in PyEval_EvalCodeEx() argument
3392 defcount ? "at most" : "exactly", in PyEval_EvalCodeEx()
3481 int m = co->co_argcount - defcount; in PyEval_EvalCodeEx()
3493 defcount) ? "at least" in PyEval_EvalCodeEx()
3503 for (; i < defcount; i++) { in PyEval_EvalCodeEx()
/external/python/cpython3/Lib/
Dinspect.py1255 def _too_many(f_name, args, kwonly, varargs, defcount, given, values): argument
1256 atleast = len(args) - defcount
1261 elif defcount:
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst247 …**args, int argcount, PyObject **kws, int kwcount, PyObject **defs, int defcount, PyObject *closur…
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst303 …**args, int argcount, PyObject **kws, int kwcount, PyObject **defs, int defcount, PyObject *kwdefs…