Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dtupleobject.c391 tupleslice(register PyTupleObject *a, register Py_ssize_t ilow, in tupleslice() function
429 return tupleslice((PyTupleObject *)op, i, j); in PyTuple_GetSlice()
692 (ssizessizeargfunc)tupleslice, /* sq_slice */
757 return Py_BuildValue("(N)", tupleslice(v, 0, Py_SIZE(v))); in tuple_getnewargs()
/external/python/cpython3/Objects/
Dtupleobject.c435 tupleslice(PyTupleObject *a, Py_ssize_t ilow, in tupleslice() function
458 return tupleslice((PyTupleObject *)op, i, j); in PyTuple_GetSlice()
831 return Py_BuildValue("(N)", tupleslice(self, 0, Py_SIZE(self))); in tuple___getnewargs___impl()