Lines Matching defs:items
145 "Append items to the end of the array.");
218 "Return a tuple (address, length) giving the current memory address and the length in items of the buffer used to hold array\'s contents.\n"
248 "Byteswap all items of the array.\n"
250 "If the items in the array are not 1, 2, 4, or 8 bytes in size, RuntimeError is\n"
269 "Reverse the order of the items in the array.");
333 "Write all items (as machine values) to the file object f.");
365 "Append items to array from list.");
374 "Convert array to an ordinary list with the same items.");
392 "Appends items from the string, interpreting it as an array of machine values, as if it had been read from a file using the fromfile() method.");
519 "_array_reconstructor($module, arraytype, typecode, mformat_code, items,\n"
532 PyObject *items);
541 PyObject *items;
563 items = args[3];
564 return_value = array__array_reconstructor_impl(module, arraytype, typecode, mformat_code, items);