(self)
| 859 | assert_equal(np.binary_repr(0, width=3), '000') |
| 860 | |
| 861 | def test_fromstring(self): |
| 862 | assert_equal(np.fromstring("12:09:09", dtype=int, sep=":"), |
| 863 | [12, 9, 9]) |
| 864 | |
| 865 | def test_searchsorted_variable_length(self): |
| 866 | x = np.array(['a', 'aa', 'b']) |
nothing calls this directly
no test coverage detected