Lines Matching refs:args
18 sys_addaudithook(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
26 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
27 if (!args) {
30 hook = args[0];
60 sys_excepthook(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
70 exctype = args[0];
71 value = args[1];
72 traceback = args[2];
157 sys_exit(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
168 status = args[0];
425 sys_set_coroutine_origin_tracking_depth(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
433 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
434 if (!args) {
437 depth = _PyLong_AsInt(args[0]);
703 sys_set_int_max_str_digits(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
711 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
712 if (!args) {
715 maxdigits = _PyLong_AsInt(args[0]);
864 sys__getframe(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
875 depth = _PyLong_AsInt(args[0]);
927 "call_tracing($module, func, args, /)\n"
930 "Call func(*args), while tracing is enabled.\n"
943 sys_call_tracing(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
952 func = args[0];
953 if (!PyTuple_Check(args[1])) {
954 _PyArg_BadArgument("call_tracing", "argument 2", "tuple", args[1]);
957 funcargs = args[1];