• Home
  • Raw
  • Download

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 failure. This is the equivalent of the Python expression ``o1 @ o2``.
44 equivalent to the "classic" division of integers.
59 the equivalent of the Python expression ``o1 % o2``.
67 the equivalent of the Python expression ``divmod(o1, o2)``.
75 equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional.
83 equivalent of the Python expression ``-o``.
88 Returns *o* on success, or *NULL* on failure. This is the equivalent of the
96 Returns the absolute value of *o*, or *NULL* on failure. This is the equivalent
103 the equivalent of the Python expression ``~o``.
109 failure. This is the equivalent of the Python expression ``o1 << o2``.
115 failure. This is the equivalent of the Python expression ``o1 >> o2``.
121 This is the equivalent of the Python expression ``o1 & o2``.
127 failure. This is the equivalent of the Python expression ``o1 ^ o2``.
133 This is the equivalent of the Python expression ``o1 | o2``.
139 is done *in-place* when *o1* supports it. This is the equivalent of the Python
146 operation is done *in-place* when *o1* supports it. This is the equivalent of
153 operation is done *in-place* when *o1* supports it. This is the equivalent of
161 the equivalent of the Python statement ``o1 @= o2``.
169 The operation is done *in-place* when *o1* supports it. This is the equivalent
185 operation is done *in-place* when *o1* supports it. This is the equivalent of
194 is done *in-place* when *o1* supports it. This is the equivalent of the Python
204 equivalent of the Python statement ``o1 <<= o2``.
211 equivalent of the Python statement ``o1 >>= o2``.
217 operation is done *in-place* when *o1* supports it. This is the equivalent of
225 equivalent of the Python statement ``o1 ^= o2``.
231 operation is done *in-place* when *o1* supports it. This is the equivalent of
240 failure. This is the equivalent of the Python expression ``int(o)``.
248 This is the equivalent of the Python expression ``float(o)``.