Lines Matching refs:args
75 range_from_array(PyTypeObject *type, PyObject *const *args, Py_ssize_t num_args)
82 step = args[2];
86 start = PyNumber_Index(args[0]);
90 stop = PyNumber_Index(args[1]);
103 stop = PyNumber_Index(args[0]);
135 range_new(PyTypeObject *type, PyObject *args, PyObject *kw)
140 return range_from_array(type, _PyTuple_ITEMS(args), PyTuple_GET_SIZE(args));
145 range_vectorcall(PyTypeObject *type, PyObject *const *args,
152 return range_from_array(type, args, nargs);
644 range_reduce(rangeobject *r, PyObject *args)