(self)
| 307 | self.check_ast_roundtrip("del x, y, z") |
| 308 | |
| 309 | def test_shifts(self): |
| 310 | self.check_ast_roundtrip("45 << 2") |
| 311 | self.check_ast_roundtrip("13 >> 7") |
| 312 | |
| 313 | def test_for_else(self): |
| 314 | self.check_ast_roundtrip(for_else) |
nothing calls this directly
no test coverage detected