(self)
| 2953 | """) |
| 2954 | |
| 2955 | def test_invalid_syntax_3(self): |
| 2956 | self.assert_syntax_error(""" |
| 2957 | match ...: |
| 2958 | case 42 as _: |
| 2959 | pass |
| 2960 | """) |
| 2961 | |
| 2962 | def test_len1_tuple_sequence_pattern_comma(self): |
| 2963 | # correct syntax would be `case(*x,):` |
nothing calls this directly
no test coverage detected