• Home
  • Raw
  • Download

Lines Matching full:on

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
35 Returns the result of dividing *o1* by *o2*, or *NULL* on failure. This is the
41 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
60 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. This is
68 See the built-in function :func:`divmod`. Returns *NULL* on failure. This is
76 See the built-in function :func:`pow`. Returns *NULL* on failure. This is the
84 Returns the negation of *o* on success, or *NULL* on failure. This is the
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
104 Returns the bitwise negation of *o* on success, or *NULL* on failure. This is
110 Returns the result of left shifting *o1* by *o2* on success, or *NULL* on
116 Returns the result of right shifting *o1* by *o2* on success, or *NULL* on
122 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure.
128 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on
134 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure.
140 Returns the result of adding *o1* and *o2*, or *NULL* on failure. The operation
147 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. The
154 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. The
161 Returns the result of dividing *o1* by *o2*, or *NULL* on failure. The
168 Returns the mathematical floor of dividing *o1* by *o2*, or *NULL* on failure.
178 *o2*, or *NULL* on failure. The return value is "approximate" because binary
188 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. The
197 See the built-in function :func:`pow`. Returns *NULL* on failure. The operation
206 Returns the result of left shifting *o1* by *o2* on success, or *NULL* on
213 Returns the result of right shifting *o1* by *o2* on success, or *NULL* on
220 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure. The
227 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on
234 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure. The
264 Returns the *o* converted to an integer object on success, or *NULL* on failure.
273 Returns the *o* converted to a long integer object on success, or *NULL* on
281 Returns the *o* converted to a float object on success, or *NULL* on failure.
287 Returns the *o* converted to a Python int or long on success or *NULL* with a
288 :exc:`TypeError` exception raised on failure.