(self)
| 157 | @ignore_charray_deprecation |
| 158 | class TestChar: |
| 159 | def test_it(self): |
| 160 | A = np.array('abc1', dtype='c').view(np.char.chararray) |
| 161 | assert_equal(A.shape, (4,)) |
| 162 | assert_equal(A.upper()[:2].tobytes(), b'AB') |
| 163 | |
| 164 | @ignore_charray_deprecation |
| 165 | class TestComparisons: |
nothing calls this directly
no test coverage detected