(ident: str)
| 216 | ), |
| 217 | ) |
| 218 | def test_invalid_idents(ident: str) -> None: |
| 219 | with pytest.raises(SyntaxError): |
| 220 | evaluate(ident, lambda ident, /, **kwargs: True) |
| 221 | |
| 222 | |
| 223 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected