Home
last modified time | relevance | path

Searched refs:substep (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Drangeobject.c348 PyObject *substart = NULL, *substop = NULL, *substep = NULL; in compute_slice() local
355 substep = PyNumber_Multiply(r->step, step); in compute_slice()
356 if (substep == NULL) goto fail; in compute_slice()
367 result = make_range_object(Py_TYPE(r), substart, substop, substep); in compute_slice()
377 Py_XDECREF(substep); in compute_slice()