(self)
| 304 | self.check_ast_roundtrip("b'foo'") |
| 305 | |
| 306 | def test_del_statement(self): |
| 307 | self.check_ast_roundtrip("del x, y, z") |
| 308 | |
| 309 | def test_shifts(self): |
| 310 | self.check_ast_roundtrip("45 << 2") |
nothing calls this directly
no test coverage detected