(self, buf, sub, start, end, res, dt)
| 794 | ("abcdefghiabc", "abc", 0, -1, 0), |
| 795 | ]) |
| 796 | def test_rindex(self, buf, sub, start, end, res, dt): |
| 797 | buf = np.array(buf, dtype=dt) |
| 798 | sub = np.array(sub, dtype=dt) |
| 799 | assert_array_equal(np.strings.rindex(buf, sub, start, end), res) |
| 800 | |
| 801 | @pytest.mark.parametrize("buf,sub,start,end", [ |
| 802 | ("abcdefghiabc", "hib", 0, None), |
nothing calls this directly
no test coverage detected