(self)
| 837 | assert_array_equal(np.char.mod(b"123%s", A), tgt) |
| 838 | |
| 839 | def test_decode(self): |
| 840 | bytestring = b'\x81\xc1\x81\xc1\x81\xc1' |
| 841 | assert_equal(np.char.decode(bytestring, encoding='cp037'), |
| 842 | 'aAaAaA') |
| 843 | |
| 844 | def test_encode(self): |
| 845 | unicode = 'aAaAaA' |
nothing calls this directly
no test coverage detected