(self)
| 872 | assert_equal(np.binary_repr(0, width=3), '000') |
| 873 | |
| 874 | def test_fromstring(self): |
| 875 | assert_equal(np.fromstring("12:09:09", dtype=int, sep=":"), |
| 876 | [12, 9, 9]) |
| 877 | |
| 878 | def test_searchsorted_variable_length(self): |
| 879 | x = np.array(['a', 'aa', 'b']) |
nothing calls this directly
no test coverage detected