• Home
  • Raw
  • Download

Lines Matching full:on

23   the type of the object being used and must call a routine based on
41 use this mechanism, the programmer must make their code dependent on
69 It has many functions operating on objects, and lest you do many
136 Print an object, o, on file, fp. Returns -1 on
161 Returns the attribute value on success, or NULL on failure.
183 Returns the attribute value on success, or NULL on failure.
194 to the value v. Raise an exception and return -1 on failure; return 0 on
204 to the value v. Raise an exception and return -1 on failure; return 0 on
214 -1 on failure. This is the equivalent of the Python
225 on failure. This is the equivalent of the Python
237 -1 on failure. This is the equivalent of the Python
248 Returns the result of the comparison on success. On error,
259 string representation on success, NULL on failure. This is
271 string representation on success, NULL on failure. This is
284 unicode representation on success, NULL on failure. This is
321 call on success, or NULL on failure. This is the equivalent
334 result of the call on success, or NULL on failure. This is
347 arguments are provided. Returns the result of the call on
348 success, or NULL on failure. This is the equivalent of the
365 result of the call on success, or NULL on failure. This is
377 on success, or NULL on failure. This is the equivalent of
386 Compute and return the hash, hash_value, of an object, o. On
398 considered to be false and -1 on failure. This is equivalent to the
408 considered to be false and -1 on failure. This is equivalent to the
416 On success, returns a type object corresponding to the object
417 type of object o. On failure, returns NULL. This is
426 returned. On error, -1 is returned. This is the equivalent
448 on failure. This is the equivalent of the Python expression:
457 on failure; return 0 on success. This is the equivalent of the Python
465 Returns -1 on failure. This is equivalent to
472 Delete the mapping for key from *o. Returns -1 on failure.
486 0 is returned on success. buffer and buffer_len are only
496 single segment) buffer interface. Returns 1 on success, 0
497 on failure.
511 0 is returned on success. buffer and buffer_len are only
526 0 is returned on success. buffer and buffer_len are only
547 call. Returns -1 and raises an error on failure and returns 0 on
574 0 on success and return -1 and raise a PyBuffer_Error on
614 "unsigned bytes" of the given length. Returns 0 on success
615 and -1 (with raising an error) on error.
663 Returns the result of adding o1 and o2, or null on failure.
672 Returns the result of subtracting o2 from o1, or null on
681 Returns the result of multiplying o1 and o2, or null on
691 Returns the result of dividing o1 by o2, or null on failure.
701 or null on failure.
711 or null on failure.
720 Returns the remainder of dividing o1 by o2, or null on
730 See the built-in function divmod. Returns NULL on failure.
741 See the built-in function pow. Returns NULL on failure.
750 Returns the negation of o on success, or null on failure.
758 Returns the (what?) of o on success, or NULL on failure.
766 Returns the absolute value of o, or null on failure. This is
774 Returns the bitwise negation of o on success, or NULL on
784 Returns the result of left shifting o1 by o2 on success, or
785 NULL on failure. This is the equivalent of the Python
794 Returns the result of right shifting o1 by o2 on success, or
795 NULL on failure. This is the equivalent of the Python
803 Returns the result of bitwise and of o1 and o2 on success, or
804 NULL on failure. This is the equivalent of the Python
813 Returns the bitwise exclusive or of o1 by o2 on success, or
814 NULL on failure. This is the equivalent of the Python
823 Returns the result of bitwise or on o1 and o2 on success, or
824 NULL on failure. This is the equivalent of the Python
857 or NULL with an error raised on failure.
886 Returns the o converted to an integer object on success, or
887 NULL on failure. This is the equivalent of the Python
895 Returns the o converted to a long integer object on success,
896 or NULL on failure. This is the equivalent of the Python
904 Returns the o converted to a float object on success, or NULL
905 on failure. This is the equivalent of the Python expression:
915 on failure. This is the equivalent of the Python expression:
924 null on failure. This is the equivalent of the Python expression:
933 null on failure. This is the equivalent of the Python expression:
942 on failure. This is the equivalent of the Python expression:
952 possibly in-place, or null on failure.
963 possibly in-place, or null on failure.
973 null on failure. This is the equivalent of the Python expression:
983 in-place, or null on failure. This is the equivalent of the Python
992 null on failure. This is the equivalent of the Python expression:
1001 null on failure. This is the equivalent of the Python expression:
1010 or null on failure. This is the equivalent of the Python
1019 null on failure. This is the equivalent of the Python expression:
1028 or null on failure. This is the equivalent of the Python
1058 Return the size of sequence object o, or -1 on failure.
1071 Return the concatenation of o1 and o2 on success, and NULL on
1081 or NULL on failure. This is the equivalent of the Python
1089 Return the ith element of o, or NULL on failure. This is the
1097 NULL on failure. This is the equivalent of the Python
1106 -1 on failure; return 0 on success. This is the equivalent of the
1114 -1 on failure. This is the equivalent of the Python
1124 -1 on failure; return 0 on success. This is the
1132 Returns -1 on failure. This is the equivalent of the Python
1139 Returns the sequence, o, as a tuple on success, and NULL on failure.
1146 Returns the sequence, o, as a list on success, and NULL on failure.
1156 Returns NULL on failure. If the object does not support iteration,
1189 Return the number of occurrences on value on o, that is,
1190 return the number of keys for which o[key]==value. On
1207 Iterate over seq. Result depends on the operation:
1212 also return -1 on error.
1213 PY_ITERSEARCH_CONTAINS: return 1 if obj in seq, else 0; -1 on
1226 X, return 1, otherwise return 0. On error, return -1. This
1233 Return the first index for which o[i]=value. On error,
1244 object, which could be o1, or NULL on failure. This is the
1253 object, which could be o1, or NULL on failure. This is the
1272 Returns the number of keys in object o on success, and -1 on
1288 Returns -1 on failure. This is equivalent to
1298 Returns -1 on failure. This is equivalent to
1306 On success, return 1 if the mapping object has the key, key,
1328 On success, return a list of the keys in object o. On
1338 On success, return a list of the values in object o. On
1348 On success, return a list of the items in object o, where
1349 each item is a tuple containing a key-value pair. On
1360 on failure. This is the equivalent of the Python expression:
1369 -1 on failure. This is the equivalent of the Python