(self, in_, dt)
| 1132 | '\U0001F107', |
| 1133 | ]) |
| 1134 | def test_isalnum_unicode(self, in_, dt): |
| 1135 | in_ = np.array(in_, dtype=dt) |
| 1136 | assert_array_equal(np.strings.isalnum(in_), True) |
| 1137 | |
| 1138 | @pytest.mark.parametrize("in_,out", [ |
| 1139 | ('\u1FFc', False), |
nothing calls this directly
no test coverage detected