Lines Matching refs:args

34 builtin___import__(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
47 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 5, 0, argsbuf);
48 if (!args) {
51 name = args[0];
55 if (args[1]) {
56 globals = args[1];
61 if (args[2]) {
62 locals = args[2];
67 if (args[3]) {
68 fromlist = args[3];
73 level = _PyLong_AsInt(args[4]);
170 builtin_format(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
179 value = args[0];
183 if (!PyUnicode_Check(args[1])) {
184 _PyArg_BadArgument("format", "argument 2", "str", args[1]);
187 if (PyUnicode_READY(args[1]) == -1) {
190 format_spec = args[1];
253 builtin_compile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
268 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 3, 6, 0, argsbuf);
269 if (!args) {
272 source = args[0];
273 if (!PyUnicode_FSDecoder(args[1], &filename)) {
276 if (!PyUnicode_Check(args[2])) {
277 _PyArg_BadArgument("compile", "argument 'mode'", "str", args[2]);
281 mode = PyUnicode_AsUTF8AndSize(args[2], &mode_length);
292 if (args[3]) {
293 flags = _PyLong_AsInt(args[3]);
301 if (args[4]) {
302 dont_inherit = _PyLong_AsInt(args[4]);
310 if (args[5]) {
311 optimize = _PyLong_AsInt(args[5]);
323 feature_version = _PyLong_AsInt(args[6]);
347 builtin_divmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
356 x = args[0];
357 y = args[1];
384 builtin_eval(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
394 source = args[0];
398 globals = args[1];
402 locals = args[2];
432 builtin_exec(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
444 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 3, 0, argsbuf);
445 if (!args) {
448 source = args[0];
453 globals = args[1];
458 locals = args[2];
463 closure = args[3];
507 builtin_hasattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
516 obj = args[0];
517 name = args[1];
552 builtin_setattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
562 obj = args[0];
563 name = args[1];
564 value = args[2];
586 builtin_delattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
595 obj = args[0];
596 name = args[1];
653 builtin_anext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
662 aiterator = args[0];
666 default_value = args[1];
743 builtin_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
754 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 3, 0, argsbuf);
755 if (!args) {
758 base = args[0];
759 exp = args[1];
763 mod = args[2];
772 "print($module, /, *args, sep=\' \', end=\'\\n\', file=None, flush=False)\n"
790 builtin_print_impl(PyObject *module, PyObject *args, PyObject *sep,
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);
808 if (!args) {
811 __clinic_args = args[0];
815 if (args[1]) {
816 sep = args[1];
821 if (args[2]) {
822 end = args[2];
827 if (args[3]) {
828 file = args[3];
833 flush = PyObject_IsTrue(args[4]);
864 builtin_input(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
875 prompt = args[0];
910 builtin_round(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
920 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
921 if (!args) {
924 number = args[0];
928 ndigits = args[1];
953 builtin_sum(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
963 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
964 if (!args) {
967 iterable = args[0];
971 start = args[1];
997 builtin_isinstance(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1006 obj = args[0];
1007 class_or_tuple = args[1];
1032 builtin_issubclass(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1041 cls = args[0];
1042 class_or_tuple = args[1];