Lines Matching refs:equivalent
21 equivalent of the Python expression ``o1 + o2``.
27 the equivalent of the Python expression ``o1 - o2``.
33 the equivalent of the Python expression ``o1 * o2``.
39 failure. This is the equivalent of the Python expression ``o1 @ o2``.
47 equivalent to the "classic" division of integers.
62 the equivalent of the Python expression ``o1 % o2``.
70 the equivalent of the Python expression ``divmod(o1, o2)``.
78 equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional.
86 equivalent of the Python expression ``-o``.
91 Returns *o* on success, or ``NULL`` on failure. This is the equivalent of the
99 Returns the absolute value of *o*, or ``NULL`` on failure. This is the equivalent
106 the equivalent of the Python expression ``~o``.
112 failure. This is the equivalent of the Python expression ``o1 << o2``.
118 failure. This is the equivalent of the Python expression ``o1 >> o2``.
124 This is the equivalent of the Python expression ``o1 & o2``.
130 failure. This is the equivalent of the Python expression ``o1 ^ o2``.
136 This is the equivalent of the Python expression ``o1 | o2``.
142 is done *in-place* when *o1* supports it. This is the equivalent of the Python
149 operation is done *in-place* when *o1* supports it. This is the equivalent of
156 operation is done *in-place* when *o1* supports it. This is the equivalent of
164 the equivalent of the Python statement ``o1 @= o2``.
172 The operation is done *in-place* when *o1* supports it. This is the equivalent
188 operation is done *in-place* when *o1* supports it. This is the equivalent of
197 is done *in-place* when *o1* supports it. This is the equivalent of the Python
207 equivalent of the Python statement ``o1 <<= o2``.
214 equivalent of the Python statement ``o1 >>= o2``.
220 operation is done *in-place* when *o1* supports it. This is the equivalent of
228 equivalent of the Python statement ``o1 ^= o2``.
234 operation is done *in-place* when *o1* supports it. This is the equivalent of
243 failure. This is the equivalent of the Python expression ``int(o)``.
251 This is the equivalent of the Python expression ``float(o)``.