Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dobject.h280 ssizessizeargfunc sq_slice; member
/external/python/cpython2/Objects/
Dabstract.c2018 if (m && m->sq_slice) {
2030 return m->sq_slice(s, i1, i2);
2433 o->ob_type->tp_as_sequence->sq_slice);
Dtypeobject.c4010 COPYSEQ(sq_slice);
6204 SQSLOT("__getslice__", sq_slice, slot_sq_slice, wrap_ssizessizeargfunc,
/external/python/cpython2/Python/
Dceval.c4761 if (sq && sq->sq_slice && ISINDEX(v) && ISINDEX(w)) { in apply_slice()
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst940 the sq_slice slot.