(self)
| 371 | @ignore_charray_deprecation |
| 372 | class TestMethods: |
| 373 | def A(self): |
| 374 | return np.array([[' abc ', ''], |
| 375 | ['12345', 'MixedCase'], |
| 376 | ['123 \t 345 \0 ', 'UPPER']], |
| 377 | dtype='S').view(np.char.chararray) |
| 378 | |
| 379 | def B(self): |
| 380 | return np.array([[' \u03a3 ', ''], |
no test coverage detected