(self, buf, tabsize, res, dt)
| 821 | (" \ta\n\tb", 1, " a\n b"), |
| 822 | ]) |
| 823 | def test_expandtabs(self, buf, tabsize, res, dt): |
| 824 | buf = np.array(buf, dtype=dt) |
| 825 | res = np.array(res, dtype=dt) |
| 826 | assert_array_equal(np.strings.expandtabs(buf, tabsize), res) |
| 827 | |
| 828 | def test_expandtabs_raises_overflow(self, dt): |
| 829 | with pytest.raises(OverflowError, match="new string is too long"): |
nothing calls this directly
no test coverage detected