Lines Matching refs:equivalent
18 equivalent of the Python expression ``o1 + o2``.
24 the equivalent of the Python expression ``o1 - o2``.
30 the equivalent of the Python expression ``o1 * o2``.
36 equivalent of the Python expression ``o1 / o2``.
42 equivalent to the "classic" division of integers.
61 the equivalent of the Python expression ``o1 % o2``.
69 the equivalent of the Python expression ``divmod(o1, o2)``.
77 equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional.
85 equivalent of the Python expression ``-o``.
90 Returns *o* on success, or *NULL* on failure. This is the equivalent of the
98 Returns the absolute value of *o*, or *NULL* on failure. This is the equivalent
105 the equivalent of the Python expression ``~o``.
111 failure. This is the equivalent of the Python expression ``o1 << o2``.
117 failure. This is the equivalent of the Python expression ``o1 >> o2``.
123 This is the equivalent of the Python expression ``o1 & o2``.
129 failure. This is the equivalent of the Python expression ``o1 ^ o2``.
135 This is the equivalent of the Python expression ``o1 | o2``.
141 is done *in-place* when *o1* supports it. This is the equivalent of the Python
148 operation is done *in-place* when *o1* supports it. This is the equivalent of
155 operation is done *in-place* when *o1* supports it. This is the equivalent of
162 operation is done *in-place* when *o1* supports it. This is the equivalent of
169 The operation is done *in-place* when *o1* supports it. This is the equivalent
189 operation is done *in-place* when *o1* supports it. This is the equivalent of
198 is done *in-place* when *o1* supports it. This is the equivalent of the Python
208 equivalent of the Python statement ``o1 <<= o2``.
215 equivalent of the Python statement ``o1 >>= o2``.
221 operation is done *in-place* when *o1* supports it. This is the equivalent of
229 equivalent of the Python statement ``o1 ^= o2``.
235 operation is done *in-place* when *o1* supports it. This is the equivalent of
250 &o2)`` is equivalent to the Python statement ``o1, o2 = coerce(o1, o2)``.
266 instead. This is the equivalent of the Python expression ``int(o)``.
274 failure. This is the equivalent of the Python expression ``long(o)``.
282 This is the equivalent of the Python expression ``float(o)``.