Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Drangeobject.c335 PyObject *substart = NULL, *substop = NULL, *substep = NULL; in compute_slice() local
346 substart = compute_item(r, start); in compute_slice()
347 if (substart == NULL) goto fail; in compute_slice()
354 result = make_range_object(Py_TYPE(r), substart, substop, substep); in compute_slice()
362 Py_XDECREF(substart); in compute_slice()