(self, in_, out, dt)
| 266 | (["abc", "aBc123"], [True, False]), |
| 267 | ]) |
| 268 | def test_isalpha(self, in_, out, dt): |
| 269 | in_ = np.array(in_, dtype=dt) |
| 270 | assert_array_equal(np.strings.isalpha(in_), out) |
| 271 | |
| 272 | @pytest.mark.parametrize("in_,out", [ |
| 273 | ('', False), |
nothing calls this directly
no test coverage detected