Home | History | Annotate | Download | only in python2.7

Lines Matching refs:i1

1093      PyAPI_FUNC(PyObject *) PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1096 Return the slice of sequence object o between i1 and i2, or
1098 expression: o[i1:i2].
1119 PyAPI_FUNC(int) PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2,
1124 object, o, from i1 to i2. Returns -1 on failure. This is the
1125 equivalent of the Python statement: o[i1:i2]=v.
1128 PyAPI_FUNC(int) PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
1131 Delete the slice in sequence object, o, from i1 to i2.
1133 statement: del o[i1:i2].