PY-48009 Support formatting of PEP-634 match statements

GitOrigin-RevId: d4755af5ca19efef70db6c4a043135182bc0da04
This commit is contained in:
Mikhail Golubev
2021-07-20 08:46:15 +00:00
committed by intellij-monorepo-bot
parent da7f965b5a
commit ccf574bad9
52 changed files with 553 additions and 16 deletions
@@ -0,0 +1,17 @@
match x:
case 1 \
| 2 \
| 3:
pass
case 1 | \
2 | \
3:
pass
case (1
| 2
| 3):
pass
case (1 |
2 |
3):
pass