(self)
| 355 | assert_(B[0][0] == str(' \\u03a3 ').encode('latin1')) |
| 356 | |
| 357 | def test_expandtabs(self): |
| 358 | T = self.A.expandtabs() |
| 359 | assert_(T[2, 0] == b'123 345 \0') |
| 360 | |
| 361 | def test_join(self): |
| 362 | # NOTE: list(b'123') == [49, 50, 51] |
nothing calls this directly
no test coverage detected