(self, in_, out, dt)
| 280 | ('abc\n', False), |
| 281 | ]) |
| 282 | def test_isalnum(self, in_, out, dt): |
| 283 | in_ = np.array(in_, dtype=dt) |
| 284 | assert_array_equal(np.strings.isalnum(in_), out) |
| 285 | |
| 286 | @pytest.mark.parametrize("in_,out", [ |
| 287 | ("", False), |
nothing calls this directly
no test coverage detected