chararray.T Same as self.transpose(), except that self is returned if self.ndim < 2.
chararray.data Python buffer object pointing to the start of the array?s data.
chararray.swapcase()
chararray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2
chararray.decode(encoding=None, errors=None)
chararray.zfill(width)
chararray.view(dtype=None, type=None) New view of array with the same data.
chararray.count(sub, start=0, end=None)
chararray.flatten(order='C') Return a copy of the array collapsed into one dimension.
chararray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n
Page 1 of 8