(self)
| 756 | np.array_str(s) # Should succeed |
| 757 | |
| 758 | def test_frompyfunc_endian(self): |
| 759 | # Ticket #503 |
| 760 | from math import radians |
| 761 | uradians = np.frompyfunc(radians, 1, 1) |
| 762 | big_endian = np.array([83.4, 83.5], dtype='>f8') |
| 763 | little_endian = np.array([83.4, 83.5], dtype='<f8') |
| 764 | assert_almost_equal(uradians(big_endian).astype(float), |
| 765 | uradians(little_endian).astype(float)) |
| 766 | |
| 767 | def test_mem_string_arr(self): |
| 768 | # Ticket #514 |
nothing calls this directly
no test coverage detected