(self)
| 2491 | |
| 2492 | @support.cpython_only |
| 2493 | def test_expandtabs_optimization(self): |
| 2494 | s = 'abc' |
| 2495 | self.assertIs(s.expandtabs(), s) |
| 2496 | |
| 2497 | def test_raiseMemError(self): |
| 2498 | asciifields = "nnb" |
nothing calls this directly
no test coverage detected