(self)
| 421 | assert_(B[0][0] == ' \\u03a3 '.encode('latin1')) |
| 422 | |
| 423 | def test_expandtabs(self): |
| 424 | T = self.A().expandtabs() |
| 425 | assert_(T[2, 0] == b'123 345 \0') |
| 426 | |
| 427 | def test_join(self): |
| 428 | # NOTE: list(b'123') == [49, 50, 51] |
nothing calls this directly
no test coverage detected