(self, in_, out, dt)
| 1147 | ('\U0001044E', True), |
| 1148 | ]) |
| 1149 | def test_islower_unicode(self, in_, out, dt): |
| 1150 | in_ = np.array(in_, dtype=dt) |
| 1151 | assert_array_equal(np.strings.islower(in_), out) |
| 1152 | |
| 1153 | @pytest.mark.parametrize("in_,out", [ |
| 1154 | ('\u1FFc', False), |
nothing calls this directly
no test coverage detected