(self)
| 847 | b'\x81\xc1\x81\xc1\x81\xc1') |
| 848 | |
| 849 | def test_expandtabs(self): |
| 850 | s = "\tone level of indentation\n\t\ttwo levels of indentation" |
| 851 | assert_equal( |
| 852 | np.char.expandtabs(s, tabsize=2), |
| 853 | " one level of indentation\n two levels of indentation" |
| 854 | ) |
| 855 | |
| 856 | def test_join(self): |
| 857 | seps = np.array(['-', '_']) |
nothing calls this directly
no test coverage detected