Broken parser: `case` is a valid variable name
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
```python
case = 42
match case:
case 42:
print('answer')
```
The snippet above will be formatted with `yapf` as follows.
```python
case = 42
match
case:
case 42:
print('answer')
```
Contributor guide
Assessment
This issue has not been assessed yet.