Lines Matching refs:nargs

34 builtin___import__(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
40 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
47 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 5, 0, argsbuf);
170 builtin_format(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
176 if (!_PyArg_CheckPositional("format", nargs, 1, 2)) {
180 if (nargs < 2) {
253 builtin_compile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
259 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 3;
268 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 3, 6, 0, argsbuf);
347 builtin_divmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
353 if (!_PyArg_CheckPositional("divmod", nargs, 2, 2)) {
384 builtin_eval(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
391 if (!_PyArg_CheckPositional("eval", nargs, 1, 3)) {
395 if (nargs < 2) {
399 if (nargs < 3) {
432 builtin_exec(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
438 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
444 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 3, 0, argsbuf);
449 if (nargs < 2) {
454 if (nargs < 3) {
507 builtin_hasattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
513 if (!_PyArg_CheckPositional("hasattr", nargs, 2, 2)) {
552 builtin_setattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
559 if (!_PyArg_CheckPositional("setattr", nargs, 3, 3)) {
586 builtin_delattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
592 if (!_PyArg_CheckPositional("delattr", nargs, 2, 2)) {
653 builtin_anext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
659 if (!_PyArg_CheckPositional("anext", nargs, 1, 2)) {
663 if (nargs < 2) {
743 builtin_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
749 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 2;
754 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 3, 0, argsbuf);
794 builtin_print(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
807 args = _PyArg_UnpackKeywordsWithVararg(args, nargs, NULL, kwnames, &_parser, 0, 0, 0, 0, argsbuf);
864 builtin_input(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
869 if (!_PyArg_CheckPositional("input", nargs, 0, 1)) {
872 if (nargs < 1) {
910 builtin_round(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
916 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
920 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
953 builtin_sum(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
959 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
963 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
997 builtin_isinstance(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1003 if (!_PyArg_CheckPositional("isinstance", nargs, 2, 2)) {
1032 builtin_issubclass(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1038 if (!_PyArg_CheckPositional("issubclass", nargs, 2, 2)) {