mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
GitOrigin-RevId: d4755af5ca19efef70db6c4a043135182bc0da04
18 lines
229 B
Python
18 lines
229 B
Python
match x:
|
|
case 1 \
|
|
| 2 \
|
|
| 3:
|
|
pass
|
|
case 1 | \
|
|
2 | \
|
|
3:
|
|
pass
|
|
case (1
|
|
| 2
|
|
| 3):
|
|
pass
|
|
case (1 |
|
|
2 |
|
|
3):
|
|
pass
|