(self)
| 229 | @ignore_charray_deprecation |
| 230 | class TestInformation: |
| 231 | def A(self): |
| 232 | return np.array([[' abc ', ''], |
| 233 | ['12345', 'MixedCase'], |
| 234 | ['123 \t 345 \0 ', 'UPPER']]) \ |
| 235 | .view(np.char.chararray) |
| 236 | |
| 237 | def B(self): |
| 238 | return np.array([[' \u03a3 ', ''], |
no test coverage detected