(self)
| 2472 | |
| 2473 | @support.cpython_only |
| 2474 | def test_expandtabs_optimization(self): |
| 2475 | s = 'abc' |
| 2476 | self.assertIs(s.expandtabs(), s) |
| 2477 | |
| 2478 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2479 | def test_raiseMemError(self): |
nothing calls this directly
no test coverage detected