Lines Matching defs:name

495         <typename1> is the name of the expected type, and
496 <typename2> is the name of the actual type,
1075 /* Get 'e' parameter: the encoding name */
1644 /* grab the function name or custom error msg first (mutually exclusive) */
1663 "Empty keyword parameter name");
1723 "Empty parameter name after $");
1847 /* make sure there are no arguments given by name and position */
1853 "argument for %.200s%s given by name ('%s') "
1927 "Empty keyword parameter name");
1935 /* grab the function name or custom error msg first (mutually exclusive) */
1971 "Empty parameter name after $");
2238 /* make sure there are no arguments given by name and position */
2253 "argument for %.200s%s given by name ('%U') "
2437 /* make sure there are no arguments given by name and position */
2452 "argument for %.200s%s given by name ('%U') "
2760 _PyArg_CheckPositional(const char *name, Py_ssize_t nargs,
2767 if (name != NULL)
2771 name, (min == max ? "" : "at least "), min, min == 1 ? "" : "s", nargs);
2786 if (name != NULL)
2790 name, (min == max ? "" : "at most "), max, max == 1 ? "" : "s", nargs);
2804 unpack_stack(PyObject *const *args, Py_ssize_t nargs, const char *name,
2810 if (!_PyArg_CheckPositional(name, nargs, min, max)) {
2822 PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, ...)
2842 retval = unpack_stack(stack, nargs, name, min, max, vargs);
2848 _PyArg_UnpackStack(PyObject *const *args, Py_ssize_t nargs, const char *name,
2859 retval = unpack_stack(args, nargs, name, min, max, vargs);