chararray.flatten(order='C') Return a copy of the array collapsed into one dimension.
chararray.reshape(shape, order='C') Returns an array containing the same data with a new shape.
chararray.count(sub, start=0, end=None)
chararray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n
chararray.view(dtype=None, type=None) New view of array with the same data.
chararray.item(*args) Copy an element of an array to a standard Python scalar and return it.
chararray.ndim Number of array dimensions. Examples
chararray.data Python buffer object pointing to the start of the array?s data.
chararray.rstrip(chars=None)
chararray.strides Tuple of bytes to step in each dimension when traversing an array. The
Page 2 of 8