(self)
| 769 | np.array_str(s) # Should succeed |
| 770 | |
| 771 | def test_frompyfunc_endian(self): |
| 772 | # Ticket #503 |
| 773 | from math import radians |
| 774 | uradians = np.frompyfunc(radians, 1, 1) |
| 775 | big_endian = np.array([83.4, 83.5], dtype='>f8') |
| 776 | little_endian = np.array([83.4, 83.5], dtype='<f8') |
| 777 | assert_almost_equal(uradians(big_endian).astype(float), |
| 778 | uradians(little_endian).astype(float)) |
| 779 | |
| 780 | def test_mem_string_arr(self): |
| 781 | # Ticket #514 |
nothing calls this directly
no test coverage detected