I'm writing the doc string for array_equal. From the existing one-line doc string I expect array_equal to return True or False. But I get this:
>> np.array_equal([1,2], [1,2]) True >> np.array_equal([1,2], [1,2,3]) 0 >> np.array_equal(np.array([1,2]), np.array([1,2,3])) 0 >> np.__version__ '1.1.0' _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
