mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-48009 Support formatting of PEP-634 match statements
GitOrigin-RevId: d4755af5ca19efef70db6c4a043135182bc0da04
This commit is contained in:
committed by
intellij-monorepo-bot
parent
da7f965b5a
commit
ccf574bad9
@@ -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
|
||||
Reference in New Issue
Block a user