(self)
| 472 | self.check_ast_roundtrip("a[i:j, k]") |
| 473 | |
| 474 | def test_invalid_raise(self): |
| 475 | self.check_invalid(ast.Raise(exc=None, cause=ast.Name(id="X", ctx=ast.Load()))) |
| 476 | |
| 477 | def test_invalid_fstring_value(self): |
| 478 | self.check_invalid( |
nothing calls this directly
no test coverage detected