Home | History | Annotate | Download | only in c-api

Lines Matching full:equivalent

21    For objects that do not provide sequence protocol, this is equivalent to the
32 This is the equivalent of the Python expression ``o1 + o2``.
38 failure. This is the equivalent of the Python expression ``o * count``.
48 The operation is done *in-place* when *o1* supports it. This is the equivalent
56 equivalent of the Python expression ``o *= count``.
65 Return the *i*\ th element of *o*, or *NULL* on failure. This is the equivalent of
76 failure. This is the equivalent of the Python expression ``o[i1:i2]``.
87 is the equivalent of the Python statement ``o[i] = v``. This function *does
101 equivalent of the Python statement ``del o[i]``.
112 This is the equivalent of the Python statement ``o[i1:i2] = v``.
125 failure. This is the equivalent of the Python statement ``del o[i1:i2]``.
136 equivalent to the Python expression ``o.count(value)``.
147 equivalent to the Python expression ``value in o``.
153 ``-1``. This is equivalent to the Python expression ``o.index(value)``.
173 equivalent to the Python expression ``tuple(o)``.