(self)
| 2986 | self._check_error("f{}", "invalid syntax", mode="single") |
| 2987 | |
| 2988 | def test_assign_call(self): |
| 2989 | self._check_error("f() = 1", "assign") |
| 2990 | |
| 2991 | def test_assign_del(self): |
| 2992 | self._check_error("del (,)", "invalid syntax") |
nothing calls this directly
no test coverage detected