(self, in_, out, dt)
| 308 | (["\t1", " \t\r \n"], [False, True]) |
| 309 | ]) |
| 310 | def test_isspace(self, in_, out, dt): |
| 311 | in_ = np.array(in_, dtype=dt) |
| 312 | assert_array_equal(np.strings.isspace(in_), out) |
| 313 | |
| 314 | @pytest.mark.parametrize("in_,out", [ |
| 315 | ('', False), |
nothing calls this directly
no test coverage detected