(self)
| 842 | 'aAaAaA') |
| 843 | |
| 844 | def test_encode(self): |
| 845 | unicode = 'aAaAaA' |
| 846 | assert_equal(np.char.encode(unicode, encoding='cp037'), |
| 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" |
nothing calls this directly
no test coverage detected