(self)
| 299 | ) |
| 300 | |
| 301 | def test_strings(self): |
| 302 | self.check_ast_roundtrip("u'foo'") |
| 303 | self.check_ast_roundtrip("r'foo'") |
| 304 | self.check_ast_roundtrip("b'foo'") |
| 305 | |
| 306 | def test_del_statement(self): |
| 307 | self.check_ast_roundtrip("del x, y, z") |
nothing calls this directly
no test coverage detected