``` >>> import numpy as np >>> x = np.array('abc', 'c') >>> x == x array([ True, True, True], dtype=bool) >>> np.equal(x, x) NotImplemented ```