(self, in_, out, dt)
| 1162 | ('\U0001044E', False), |
| 1163 | ]) |
| 1164 | def test_isupper_unicode(self, in_, out, dt): |
| 1165 | in_ = np.array(in_, dtype=dt) |
| 1166 | assert_array_equal(np.strings.isupper(in_), out) |
| 1167 | |
| 1168 | @pytest.mark.parametrize("in_,out", [ |
| 1169 | ('\u1FFc', True), |
nothing calls this directly
no test coverage detected