(self)
| 818 | assert_(res.dtype.char == 'S') |
| 819 | |
| 820 | def test_decode(self): |
| 821 | res = np.char.decode(np.array([], dtype='S')) |
| 822 | assert_array_equal(res, []) |
| 823 | assert_(res.dtype.char == 'U') |
| 824 | |
| 825 | def test_decode_with_reshape(self): |
| 826 | res = np.char.decode(np.array([], dtype='S').reshape((1, 0, 1))) |
nothing calls this directly
no test coverage detected