Lines Matching refs:failure
17 Returns the result of adding *o1* and *o2*, or *NULL* on failure. This is the
23 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. This is
29 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. This is
36 failure. This is the equivalent of the Python expression ``o1 @ o2``.
43 Return the floor of *o1* divided by *o2*, or *NULL* on failure. This is
50 *o2*, or *NULL* on failure. The return value is "approximate" because binary
58 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. This is
66 See the built-in function :func:`divmod`. Returns *NULL* on failure. This is
74 See the built-in function :func:`pow`. Returns *NULL* on failure. This is the
82 Returns the negation of *o* on success, or *NULL* on failure. This is the
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
102 Returns the bitwise negation of *o* on success, or *NULL* on failure. This is
109 failure. This is the equivalent of the Python expression ``o1 << o2``.
115 failure. This is the equivalent of the Python expression ``o1 >> o2``.
120 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure.
127 failure. This is the equivalent of the Python expression ``o1 ^ o2``.
132 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure.
138 Returns the result of adding *o1* and *o2*, or *NULL* on failure. The operation
145 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. The
152 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. The
160 failure. The operation is done *in-place* when *o1* supports it. This is
168 Returns the mathematical floor of dividing *o1* by *o2*, or *NULL* on failure.
176 *o2*, or *NULL* on failure. The return value is "approximate" because binary
184 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. The
193 See the built-in function :func:`pow`. Returns *NULL* on failure. The operation
203 failure. The operation is done *in-place* when *o1* supports it. This is the
210 failure. The operation is done *in-place* when *o1* supports it. This is the
216 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure. The
224 failure. The operation is done *in-place* when *o1* supports it. This is the
230 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure. The
240 failure. This is the equivalent of the Python expression ``int(o)``.
247 Returns the *o* converted to a float object on success, or *NULL* on failure.
254 :exc:`TypeError` exception raised on failure.