(self, in_, out, dt)
| 292 | (["a", "012345"], [False, True]), |
| 293 | ]) |
| 294 | def test_isdigit(self, in_, out, dt): |
| 295 | in_ = np.array(in_, dtype=dt) |
| 296 | assert_array_equal(np.strings.isdigit(in_), out) |
| 297 | |
| 298 | @pytest.mark.parametrize("in_,out", [ |
| 299 | ("", False), |
nothing calls this directly
no test coverage detected