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

Method test_isalnum_unicode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

assert_array_equalFunction · 0.90
isalnumMethod · 0.80

Tested by

no test coverage detected