MCPcopy Index your code
hub / github.com/numpy/numpy / test_islower_unicode

Method test_islower_unicode

numpy/_core/tests/test_strings.py:1149–1151  ·  view source on GitHub ↗
(self, in_, out, dt)

Source from the content-addressed store, hash-verified

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),

Callers

nothing calls this directly

Calls 2

assert_array_equalFunction · 0.90
islowerMethod · 0.80

Tested by

no test coverage detected